├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── Glimpse.sln ├── LICENSE.txt ├── NuGet.config ├── NuGet.exe ├── contributing.md ├── global.json ├── makefile.shade ├── pack.cmd ├── sample ├── Glimpse.Agent.AspNet.Sample │ ├── Glimpse.Agent.AspNet.Sample.csproj │ ├── Program.cs │ ├── Properties │ │ └── debugSettings.json │ ├── Startup.cs │ ├── glimpse.json │ └── web.config ├── Glimpse.AgentServer.AspNet.Mvc.Sample │ ├── .bowerrc │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── HomeController.cs │ │ └── ManageController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Glimpse.AgentServer.AspNet.Mvc.Sample.csproj │ ├── Models │ │ ├── AccountViewModels │ │ │ ├── ExternalLoginConfirmationViewModel.cs │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── RegisterViewModel.cs │ │ │ ├── ResetPasswordViewModel.cs │ │ │ ├── SendCodeViewModel.cs │ │ │ └── VerifyCodeViewModel.cs │ │ ├── ApplicationUser.cs │ │ └── ManageViewModels │ │ │ ├── AddPhoneNumberViewModel.cs │ │ │ ├── ChangePasswordViewModel.cs │ │ │ ├── ConfigureTwoFactorViewModel.cs │ │ │ ├── FactorViewModel.cs │ │ │ ├── IndexViewModel.cs │ │ │ ├── ManageLoginsViewModel.cs │ │ │ ├── RemoveLoginViewModel.cs │ │ │ ├── SetPasswordViewModel.cs │ │ │ └── VerifyPhoneNumberViewModel.cs │ ├── Program.cs │ ├── Services │ │ ├── IEmailSender.cs │ │ ├── ISmsSender.cs │ │ └── MessageServices.cs │ ├── Startup.cs │ ├── Views │ │ ├── Account │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── Lockout.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ ├── SendCode.cshtml │ │ │ └── VerifyCode.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Manage │ │ │ ├── AddPhoneNumber.cshtml │ │ │ ├── ChangePassword.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ManageLogins.cshtml │ │ │ ├── SetPassword.cshtml │ │ │ └── VerifyPhoneNumber.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ ├── web.config │ └── wwwroot │ │ ├── _references.js │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Glimpse.AgentServer.AspNet.Mvc.Simple.Sample │ ├── .bowerrc │ ├── Controllers │ │ └── HomeController.cs │ ├── Glimpse.AgentServer.AspNet.Mvc.Simple.Sample.csproj │ ├── Program.cs │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ ├── web.config │ └── wwwroot │ │ ├── _references.js │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Glimpse.AgentServer.AspNet.Sample │ ├── Glimpse.AgentServer.AspNet.Sample.csproj │ ├── Program.cs │ ├── Properties │ │ └── debugSettings.json │ ├── SamplePage.cs │ ├── Startup.cs │ └── web.config ├── Glimpse.Server.AspNet.Sample │ ├── Glimpse.Server.AspNet.Sample.csproj │ ├── Program.cs │ ├── Properties │ │ └── debugSettings.json │ ├── Startup.cs │ └── web.config └── MusicStore │ ├── Areas │ └── Admin │ │ ├── Controllers │ │ └── StoreManagerController.cs │ │ └── Views │ │ ├── StoreManager │ │ ├── Create.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ ├── Index.cshtml │ │ └── RemoveAlbum.cshtml │ │ └── _ViewStart.cshtml │ ├── Components │ ├── CartSummaryComponent.cs │ ├── GenreMenuComponent.cs │ ├── ISystemClock.cs │ └── SystemClock.cs │ ├── Controllers │ ├── AccountController.cs │ ├── CheckoutController.cs │ ├── HomeController.cs │ ├── ManageController.cs │ ├── ShoppingCartController.cs │ └── StoreController.cs │ ├── MessageServices.cs │ ├── Models │ ├── AccountViewModels.cs │ ├── Album.cs │ ├── Artist.cs │ ├── CartItem.cs │ ├── Genre.cs │ ├── ManageViewModels.cs │ ├── MusicStoreContext.cs │ ├── Order.cs │ ├── OrderDetail.cs │ ├── SampleData.cs │ └── ShoppingCart.cs │ ├── MusicStore.csproj │ ├── MusicStoreConfig.cs │ ├── Platform.cs │ ├── Program.cs │ ├── Properties │ └── AppSettings.cs │ ├── Scripts │ └── _references.js │ ├── Startup.cs │ ├── StartupNtlmAuthentication.cs │ ├── StartupOpenIdConnect.cs │ ├── ViewModels │ ├── AlbumData.cs │ ├── ShoppingCartRemoveViewModel.cs │ └── ShoppingCartViewModel.cs │ ├── Views │ ├── Account │ │ ├── ConfirmEmail.cshtml │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── Login.cshtml │ │ ├── Register.cshtml │ │ ├── RegisterConfirmation.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── SendCode.cshtml │ │ ├── VerifyCode.cshtml │ │ └── _ExternalLoginsListPartial.cshtml │ ├── Checkout │ │ ├── AddressAndPayment.cshtml │ │ └── Complete.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Manage │ │ ├── AddPhoneNumber.cshtml │ │ ├── ChangePassword.cshtml │ │ ├── Index.cshtml │ │ ├── ManageLogins.cshtml │ │ ├── SetPassword.cshtml │ │ └── VerifyPhoneNumber.cshtml │ ├── Shared │ │ ├── AccessDenied.cshtml │ │ ├── Components │ │ │ ├── Announcement │ │ │ │ └── Default.cshtml │ │ │ ├── CartSummary │ │ │ │ └── Default.cshtml │ │ │ └── GenreMenu │ │ │ │ └── Default.cshtml │ │ ├── DemoLinkDisplay.cshtml │ │ ├── Error.cshtml │ │ ├── Lockout.cshtml │ │ ├── StatusCodePage.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── ShoppingCart │ │ └── Index.cshtml │ ├── Store │ │ ├── Browse.cshtml │ │ ├── Details.cshtml │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── config.json │ ├── web.config │ └── wwwroot │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Images │ ├── home-showcase.png │ ├── logo.png │ ├── logo.svg │ ├── placeholder.png │ └── placeholder.svg │ ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-2.0.3.intellisense.js │ ├── jquery-2.0.3.js │ ├── jquery-2.0.3.min.js │ ├── jquery-2.0.3.min.map │ ├── jquery.signalR-2.0.1.js │ ├── jquery.signalR-2.0.1.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js │ ├── favicon.ico │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── src ├── Glimpse.Agent.AspNet.Mvc │ ├── Glimpse.Agent.AspNet.Mvc.csproj │ └── Razor │ │ ├── RazorServices.cs │ │ ├── ScriptInjector.cs │ │ └── ScriptInjectorRazorHost.cs ├── Glimpse.Agent.AspNet │ ├── AgentMiddleware.cs │ ├── AgentServices.cs │ ├── Configuration │ │ ├── DefaultRequestIgnorerContentTypeProvider.cs │ │ ├── DefaultRequestIgnorerManager.cs │ │ ├── DefaultRequestIgnorerStatusCodeProvider.cs │ │ ├── DefaultRequestIgnorerUriProvider.cs │ │ ├── IRequestIgnorer.cs │ │ ├── IRequestIgnorerContentTypeProvider.cs │ │ ├── IRequestIgnorerManager.cs │ │ ├── IRequestIgnorerStatusCodeProvider.cs │ │ ├── IRequestIgnorerUriProvider.cs │ │ ├── RegexExtensions.cs │ │ ├── RequestIgnorerContentType.cs │ │ ├── RequestIgnorerOptionsShouldIgnore.cs │ │ ├── RequestIgnorerStatusCode.cs │ │ └── RequestIgnorerUri.cs │ ├── Glimpse.Agent.AspNet.csproj │ ├── GlimpseAgentMiddleware.cs │ ├── GlimpseAgentOptions.cs │ ├── GlimpseAgentOptionsSetup.cs │ ├── GlimpseAgentServiceCollectionBuilder.cs │ ├── GlimpseAgentServiceCollectionExtensions.cs │ ├── Initialization │ │ ├── DefaultAgentStartupManager.cs │ │ ├── IAgentStartup.cs │ │ └── IAgentStartupManager.cs │ ├── Inspectors │ │ ├── DefaultInspectorFunctionManager.cs │ │ ├── Execute.cs │ │ ├── IInspector.cs │ │ ├── IInspectorFunction.cs │ │ ├── IInspectorFunctionBuilder.cs │ │ ├── IInspectorFunctionManager.cs │ │ ├── Inspector.cs │ │ ├── InspectorFunctionBuilder.cs │ │ ├── InspectorsInspectorFunction.cs │ │ └── Tab.cs │ ├── Internal │ │ ├── Inspectors │ │ │ ├── AgentStartupWebDiagnosticsInspector.cs │ │ │ ├── AspNet │ │ │ │ ├── AjaxInspector.cs │ │ │ │ ├── AspNetDiagnosticsInspector.cs │ │ │ │ ├── EnvironmentInspector.cs │ │ │ │ ├── ExceptionProcessor.cs │ │ │ │ ├── IExceptionProcessor.cs │ │ │ │ └── UserInspector.cs │ │ │ ├── EF │ │ │ │ ├── EFDiagnosticsInspector.cs │ │ │ │ └── Proxies │ │ │ │ │ └── IDbCommand.cs │ │ │ ├── Mvc │ │ │ │ ├── MvcDiagnosticsInspector.cs │ │ │ │ └── Proxies │ │ │ │ │ ├── ActionResultTypes.cs │ │ │ │ │ ├── IActionContext.cs │ │ │ │ │ ├── IActionDescriptor.cs │ │ │ │ │ ├── IActionResult.cs │ │ │ │ │ ├── IRouteData.cs │ │ │ │ │ ├── IView.cs │ │ │ │ │ ├── IViewComponentContext.cs │ │ │ │ │ ├── IViewComponentDescriptor.cs │ │ │ │ │ ├── IViewContext.cs │ │ │ │ │ └── ProxyAdapter.cs │ │ │ └── WebDiagnosticsInspector.cs │ │ ├── Messaging │ │ │ ├── DefaultMessageConverter.cs │ │ │ ├── DefaultMessageIndexProcessor.cs │ │ │ ├── DefaultMessagePayloadFormatter.cs │ │ │ ├── DefaultMessageTypeProcessor.cs │ │ │ ├── IMessageConverter.cs │ │ │ ├── IMessageIndexProcessor.cs │ │ │ ├── IMessagePayloadFormatter.cs │ │ │ └── IMessageTypeProcessor.cs │ │ └── Tabs │ │ │ ├── ConnectionTab.cs │ │ │ └── HeadersTab.cs │ ├── Messages │ │ ├── ActionViewDidFoundMessage.cs │ │ ├── ActionViewFoundMessage.cs │ │ ├── ActionViewNotFoundMessage.cs │ │ ├── AfterActionInvokedMessage.cs │ │ ├── AfterActionMessage.cs │ │ ├── AfterActionResultMessage.cs │ │ ├── AfterActionViewInvokedMessage.cs │ │ ├── AfterExecuteCommandMessage.cs │ │ ├── AfterViewComponentMessage.cs │ │ ├── ArgumentData.cs │ │ ├── BeforeActionInvokedMessage.cs │ │ ├── BeforeActionMessage.cs │ │ ├── BeforeActionResultMessage.cs │ │ ├── BeforeActionViewInvokedMessage.cs │ │ ├── BeforeExecuteCommandMessage.cs │ │ ├── BeforeViewComponentMessage.cs │ │ ├── BeginRequestMessage.cs │ │ ├── BindingData.cs │ │ ├── DiagnosticsExceptionMessage.cs │ │ ├── EndRequestMessage.cs │ │ ├── EnvironmentMessage.cs │ │ ├── ExceptionDetails.cs │ │ ├── HostingExceptionMessage.cs │ │ ├── IActionContentMessage.cs │ │ ├── IActionRouteMessage.cs │ │ ├── IExceptionMessage.cs │ │ ├── RouteData.cs │ │ ├── StackFrame.cs │ │ ├── TabMessage.cs │ │ ├── UserIdentificationMessage.cs │ │ └── ViewResultData.cs │ └── Messaging │ │ ├── AgentBrokerExtensions.cs │ │ ├── DefaultAgentBroker.cs │ │ ├── HttpMessagePublisher.cs │ │ ├── PromoteToContentTypeAttribute.cs │ │ ├── PromoteToDateTimeAttribute.cs │ │ ├── PromoteToDurationAttribute.cs │ │ ├── PromoteToMethodAttribute.cs │ │ ├── PromoteToStatusCodeAttribute.cs │ │ ├── PromoteToUrlAttribute.cs │ │ └── PromoteToUserIdAttribute.cs ├── Glimpse.Common │ ├── ApplicationBuilderExtensions.cs │ ├── DefaultGlimpseContextAccessor.cs │ ├── Glimpse.Common.csproj │ ├── GlimpseOptions.cs │ ├── GlimpseServiceCollectionBuilder.cs │ ├── GlimpseServiceCollectionExtensions.cs │ ├── GlimpseServices.cs │ ├── IGlimpseContextAccessor.cs │ ├── Initialization │ │ ├── DefaultExtensionProvider.cs │ │ ├── FixedExtensionProvider.cs │ │ ├── IExtensionProvider.cs │ │ ├── IRegisterMiddleware.cs │ │ ├── IRegisterServices.cs │ │ ├── IResourceOptionsProvider.cs │ │ ├── IStartupOptions.cs │ │ ├── OptionsResourceOptionsProvider.cs │ │ ├── ResourceOptions.cs │ │ └── StartupOptions.cs │ ├── Internal │ │ ├── ContextData.cs │ │ ├── Extensions │ │ │ ├── DictionaryExtensions.cs │ │ │ ├── HashExtensions.cs │ │ │ ├── JsonSerializerExtensions.cs │ │ │ ├── PathStringExtension.cs │ │ │ ├── ReflectionExtensions.cs │ │ │ ├── StringExtensions.cs │ │ │ └── TypeExtension.cs │ │ ├── IContextData.cs │ │ ├── Messaging │ │ │ ├── Operation.cs │ │ │ ├── OperationOffset.cs │ │ │ ├── OperationStack.cs │ │ │ ├── OperationTiming.cs │ │ │ └── Timing.cs │ │ ├── Reflection │ │ │ ├── DefaultAssemblyProvider.cs │ │ │ ├── DefaultTypeActivator.cs │ │ │ ├── DefaultTypeSelector.cs │ │ │ ├── DefaultTypeService.cs │ │ │ ├── IAssemblyProvider.cs │ │ │ ├── ITypeActivator.cs │ │ │ ├── ITypeSelector.cs │ │ │ └── ITypeService.cs │ │ ├── SanitizeUserObjectsHelper.cs │ │ ├── Serialization │ │ │ ├── DefaultJsonSerializerProvider.cs │ │ │ ├── GuidConverter.cs │ │ │ ├── IJsonSerializerProvider.cs │ │ │ ├── StringValuesConverter.cs │ │ │ └── TimeSpanConverter.cs │ │ ├── ServiceCollectionWrapper.cs │ │ └── TypeNameHelper.cs │ └── Messaging │ │ ├── AgentBrokerObservations.cs │ │ ├── AgentBrokerPayload.cs │ │ ├── IAgentBroker.cs │ │ ├── IMessage.cs │ │ ├── IMessagePublisher.cs │ │ ├── IMessageTypeProvider.cs │ │ ├── Message.cs │ │ ├── MessageContext.cs │ │ └── PromoteToAttribute.cs ├── Glimpse.Server │ ├── Configuration │ │ ├── AllowAgentAccessOptions.cs │ │ ├── AllowClientAccessOptions.cs │ │ ├── AllowClientAccessRemote.cs │ │ ├── DefaultAllowRemoteProvider.cs │ │ ├── DefaultMetadataProvider.cs │ │ ├── DefaultResourceOptionsProvider.cs │ │ ├── IAllowAgentAccess.cs │ │ ├── IAllowClientAccess.cs │ │ ├── IAllowRemoteProvider.cs │ │ ├── IMetadataProvider.cs │ │ └── Metadata.cs │ ├── Glimpse.Server.csproj │ ├── GlimpseServerMiddleware.cs │ ├── GlimpseServerOptions.cs │ ├── GlimpseServerOptionsSetup.cs │ ├── GlimpseServerServiceCollectionBuilder.cs │ ├── GlimpseServerServiceCollectionExtensions.cs │ ├── Internal │ │ ├── Extensions │ │ │ ├── JsonStringExtensions.cs │ │ │ ├── ParameterExtensions.cs │ │ │ └── UriTemplateExtensions.cs │ │ ├── IResourceManager.cs │ │ ├── ResourceManager.cs │ │ ├── ResourceManagerResult.cs │ │ └── Resources │ │ │ ├── ContextResource.cs │ │ │ ├── EmbeddedFileResource.cs │ │ │ ├── Embeded │ │ │ ├── Agent │ │ │ │ └── agent │ │ │ │ │ └── agent.js │ │ │ └── Client │ │ │ │ ├── client │ │ │ │ ├── assets │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── logo-long-white.png │ │ │ │ │ ├── selawk.woff │ │ │ │ │ ├── selawk.woff2 │ │ │ │ │ ├── selawkl.woff │ │ │ │ │ └── selawkl.woff2 │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ └── main.min.js │ │ │ │ ├── diagnostics │ │ │ │ ├── index.html │ │ │ │ └── scripts │ │ │ │ │ ├── jquery │ │ │ │ │ ├── jquery-2.1.1.js │ │ │ │ │ └── jquery-2.1.1.min.js │ │ │ │ │ ├── reactjs │ │ │ │ │ ├── JSXTransformer.js │ │ │ │ │ ├── react-with-addons.js │ │ │ │ │ ├── react-with-addons.min.js │ │ │ │ │ ├── react.js │ │ │ │ │ └── react.min.js │ │ │ │ │ └── signalr │ │ │ │ │ ├── jquery.signalR-2.2.0.js │ │ │ │ │ └── jquery.signalR-2.2.0.min.js │ │ │ │ └── hud │ │ │ │ ├── assets │ │ │ │ ├── glimpse-logo.png │ │ │ │ ├── selawk.woff │ │ │ │ ├── selawk.woff2 │ │ │ │ ├── selawkl.woff │ │ │ │ └── selawkl.woff2 │ │ │ │ ├── hud.js │ │ │ │ └── hud.min.js │ │ │ ├── ExportConfigurationResource.cs │ │ │ ├── MessageHistoryResource.cs │ │ │ ├── MessageIngressResource.cs │ │ │ ├── MessageStreamResource.cs │ │ │ ├── MetadataResource.cs │ │ │ ├── NullResponse.cs │ │ │ ├── RequestHistoryResource.cs │ │ │ └── ResponseDecorator.cs │ ├── Messaging │ │ ├── DefaultServerBroker.cs │ │ ├── IServerBroker.cs │ │ ├── InProcessPublisher.cs │ │ └── ServerBrokerObservations.cs │ ├── Properties │ │ └── debugSettings.json │ ├── Resources │ │ ├── ExceptionProblem.cs │ │ ├── HttpContextExtensions.cs │ │ ├── HttpStatusResponse.cs │ │ ├── IResource.cs │ │ ├── IResourceBuilder.cs │ │ ├── IResourceStartup.cs │ │ ├── IResponse.cs │ │ ├── InvalidJsonProblem.cs │ │ ├── InvalidMethodProblem.cs │ │ ├── Json.cs │ │ ├── MissingParameterProblem.cs │ │ ├── Problem.cs │ │ ├── RawJson.cs │ │ ├── ResourceBuilder.cs │ │ ├── ResourceParameter.cs │ │ ├── ResourceParameterExtentions.cs │ │ └── ResourceType.cs │ ├── ServerMiddleware.cs │ ├── ServerServices.cs │ └── Storage │ │ ├── IQueryRequests.cs │ │ ├── IStorage.cs │ │ ├── InMemoryStorage.cs │ │ └── StorageExtensions.cs ├── Glimpse │ ├── Glimpse.nuspec │ ├── lib │ │ ├── net35 │ │ │ └── Glimpse.Core.dll │ │ ├── net40 │ │ │ └── Glimpse.Core.dll │ │ ├── net45 │ │ │ └── Glimpse.Core.dll │ │ ├── net451 │ │ │ └── _._ │ │ └── netstandard1.6 │ │ │ └── _._ │ └── tools │ │ ├── glimpse.psm1 │ │ ├── init.ps1 │ │ ├── install.ps1 │ │ └── uninstall.ps1 └── readme.md └── test ├── Glimpse.FunctionalTest ├── FunctionalTests.cs └── Glimpse.FunctionalTest.csproj ├── Glimpse.Prototype.UnitTest ├── Glimpse.Prototype.UnitTest.csproj └── InMemoryStorageUnitTests.cs └── websites └── Glimpse.FunctionalTest.Website ├── Controllers └── HomeController.cs ├── Glimpse.FunctionalTest.Website.csproj ├── Program.cs ├── Startup.cs └── hosting.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Glimpse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/Glimpse.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/NuGet.config -------------------------------------------------------------------------------- /NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/NuGet.exe -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/contributing.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/global.json -------------------------------------------------------------------------------- /makefile.shade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/makefile.shade -------------------------------------------------------------------------------- /pack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/pack.cmd -------------------------------------------------------------------------------- /sample/Glimpse.Agent.AspNet.Sample/Glimpse.Agent.AspNet.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Agent.AspNet.Sample/Glimpse.Agent.AspNet.Sample.csproj -------------------------------------------------------------------------------- /sample/Glimpse.Agent.AspNet.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Agent.AspNet.Sample/Program.cs -------------------------------------------------------------------------------- /sample/Glimpse.Agent.AspNet.Sample/Properties/debugSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profiles": [] 3 | } -------------------------------------------------------------------------------- /sample/Glimpse.Agent.AspNet.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Agent.AspNet.Sample/Startup.cs -------------------------------------------------------------------------------- /sample/Glimpse.Agent.AspNet.Sample/glimpse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Agent.AspNet.Sample/glimpse.json -------------------------------------------------------------------------------- /sample/Glimpse.Agent.AspNet.Sample/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Agent.AspNet.Sample/web.config -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Controllers/AccountController.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Controllers/ManageController.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Glimpse.AgentServer.AspNet.Mvc.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Glimpse.AgentServer.AspNet.Mvc.Sample.csproj -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/SendCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/SendCodeViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/VerifyCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/AccountViewModels/VerifyCodeViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/AddPhoneNumberViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/AddPhoneNumberViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/ConfigureTwoFactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/ConfigureTwoFactorViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/FactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/FactorViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/ManageLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/ManageLoginsViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/VerifyPhoneNumberViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Models/ManageViewModels/VerifyPhoneNumberViewModel.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Program.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Services/IEmailSender.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Services/ISmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Services/ISmsSender.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Services/MessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Services/MessageServices.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Startup.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Home/About.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/appsettings.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/bundleconfig.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/web.config -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/_references.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/css/site.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Sample/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample.csproj -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Program.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Startup.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Home/About.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/appsettings.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/bundleconfig.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/web.config -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/_references.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/css/site.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Mvc.Simple.Sample/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Sample/Glimpse.AgentServer.AspNet.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Sample/Glimpse.AgentServer.AspNet.Sample.csproj -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Sample/Program.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Sample/Properties/debugSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profiles": [] 3 | } -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Sample/SamplePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Sample/SamplePage.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Sample/Startup.cs -------------------------------------------------------------------------------- /sample/Glimpse.AgentServer.AspNet.Sample/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.AgentServer.AspNet.Sample/web.config -------------------------------------------------------------------------------- /sample/Glimpse.Server.AspNet.Sample/Glimpse.Server.AspNet.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Server.AspNet.Sample/Glimpse.Server.AspNet.Sample.csproj -------------------------------------------------------------------------------- /sample/Glimpse.Server.AspNet.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Server.AspNet.Sample/Program.cs -------------------------------------------------------------------------------- /sample/Glimpse.Server.AspNet.Sample/Properties/debugSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profiles": [] 3 | } -------------------------------------------------------------------------------- /sample/Glimpse.Server.AspNet.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Server.AspNet.Sample/Startup.cs -------------------------------------------------------------------------------- /sample/Glimpse.Server.AspNet.Sample/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/Glimpse.Server.AspNet.Sample/web.config -------------------------------------------------------------------------------- /sample/MusicStore/Areas/Admin/Controllers/StoreManagerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Areas/Admin/Controllers/StoreManagerController.cs -------------------------------------------------------------------------------- /sample/MusicStore/Areas/Admin/Views/StoreManager/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Areas/Admin/Views/StoreManager/Create.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Areas/Admin/Views/StoreManager/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Areas/Admin/Views/StoreManager/Details.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Areas/Admin/Views/StoreManager/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Areas/Admin/Views/StoreManager/Edit.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Areas/Admin/Views/StoreManager/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Areas/Admin/Views/StoreManager/Index.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Areas/Admin/Views/StoreManager/RemoveAlbum.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Areas/Admin/Views/StoreManager/RemoveAlbum.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Areas/Admin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Components/CartSummaryComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Components/CartSummaryComponent.cs -------------------------------------------------------------------------------- /sample/MusicStore/Components/GenreMenuComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Components/GenreMenuComponent.cs -------------------------------------------------------------------------------- /sample/MusicStore/Components/ISystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Components/ISystemClock.cs -------------------------------------------------------------------------------- /sample/MusicStore/Components/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Components/SystemClock.cs -------------------------------------------------------------------------------- /sample/MusicStore/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Controllers/AccountController.cs -------------------------------------------------------------------------------- /sample/MusicStore/Controllers/CheckoutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Controllers/CheckoutController.cs -------------------------------------------------------------------------------- /sample/MusicStore/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Controllers/HomeController.cs -------------------------------------------------------------------------------- /sample/MusicStore/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Controllers/ManageController.cs -------------------------------------------------------------------------------- /sample/MusicStore/Controllers/ShoppingCartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Controllers/ShoppingCartController.cs -------------------------------------------------------------------------------- /sample/MusicStore/Controllers/StoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Controllers/StoreController.cs -------------------------------------------------------------------------------- /sample/MusicStore/MessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/MessageServices.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/Album.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/Artist.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/CartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/CartItem.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/Genre.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/MusicStoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/MusicStoreContext.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/Order.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/OrderDetail.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/SampleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/SampleData.cs -------------------------------------------------------------------------------- /sample/MusicStore/Models/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Models/ShoppingCart.cs -------------------------------------------------------------------------------- /sample/MusicStore/MusicStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/MusicStore.csproj -------------------------------------------------------------------------------- /sample/MusicStore/MusicStoreConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/MusicStoreConfig.cs -------------------------------------------------------------------------------- /sample/MusicStore/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Platform.cs -------------------------------------------------------------------------------- /sample/MusicStore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Program.cs -------------------------------------------------------------------------------- /sample/MusicStore/Properties/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Properties/AppSettings.cs -------------------------------------------------------------------------------- /sample/MusicStore/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Scripts/_references.js -------------------------------------------------------------------------------- /sample/MusicStore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Startup.cs -------------------------------------------------------------------------------- /sample/MusicStore/StartupNtlmAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/StartupNtlmAuthentication.cs -------------------------------------------------------------------------------- /sample/MusicStore/StartupOpenIdConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/StartupOpenIdConnect.cs -------------------------------------------------------------------------------- /sample/MusicStore/ViewModels/AlbumData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/ViewModels/AlbumData.cs -------------------------------------------------------------------------------- /sample/MusicStore/ViewModels/ShoppingCartRemoveViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/ViewModels/ShoppingCartRemoveViewModel.cs -------------------------------------------------------------------------------- /sample/MusicStore/ViewModels/ShoppingCartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/ViewModels/ShoppingCartViewModel.cs -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/RegisterConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/RegisterConfirmation.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Checkout/AddressAndPayment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Checkout/AddressAndPayment.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Checkout/Complete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Checkout/Complete.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/AccessDenied.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/Components/Announcement/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/Components/Announcement/Default.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/Components/CartSummary/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/Components/CartSummary/Default.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/Components/GenreMenu/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/Components/GenreMenu/Default.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/DemoLinkDisplay.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/DemoLinkDisplay.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/StatusCodePage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/StatusCodePage.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/ShoppingCart/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/ShoppingCart/Index.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Store/Browse.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Store/Browse.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Store/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Store/Details.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/Store/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/Store/Index.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /sample/MusicStore/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/config.json -------------------------------------------------------------------------------- /sample/MusicStore/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/web.config -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Content/Site.css -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Content/bootstrap.css -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Content/bootstrap.min.css -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Images/home-showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Images/home-showcase.png -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Images/logo.png -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Images/logo.svg -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Images/placeholder.png -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Images/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Images/placeholder.svg -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/bootstrap.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery-2.0.3.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery-2.0.3.intellisense.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery-2.0.3.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery-2.0.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery-2.0.3.min.map -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery.signalR-2.0.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery.signalR-2.0.1.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery.signalR-2.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery.signalR-2.0.1.min.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/respond.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/Scripts/respond.min.js -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/favicon.ico -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sample/MusicStore/wwwroot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/sample/MusicStore/wwwroot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet.Mvc/Glimpse.Agent.AspNet.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet.Mvc/Glimpse.Agent.AspNet.Mvc.csproj -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet.Mvc/Razor/RazorServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet.Mvc/Razor/RazorServices.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjectorRazorHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet.Mvc/Razor/ScriptInjectorRazorHost.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/AgentMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/AgentMiddleware.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/AgentServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/AgentServices.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/DefaultRequestIgnorerContentTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/DefaultRequestIgnorerContentTypeProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/DefaultRequestIgnorerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/DefaultRequestIgnorerManager.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/DefaultRequestIgnorerStatusCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/DefaultRequestIgnorerStatusCodeProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/DefaultRequestIgnorerUriProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/DefaultRequestIgnorerUriProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorer.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorerContentTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorerContentTypeProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorerManager.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorerStatusCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorerStatusCodeProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorerUriProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/IRequestIgnorerUriProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/RegexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/RegexExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerContentType.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerOptionsShouldIgnore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerOptionsShouldIgnore.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerStatusCode.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Configuration/RequestIgnorerUri.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Glimpse.Agent.AspNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Glimpse.Agent.AspNet.csproj -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/GlimpseAgentMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/GlimpseAgentMiddleware.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/GlimpseAgentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/GlimpseAgentOptions.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/GlimpseAgentOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/GlimpseAgentOptionsSetup.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionBuilder.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/GlimpseAgentServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Initialization/DefaultAgentStartupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Initialization/DefaultAgentStartupManager.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Initialization/IAgentStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Initialization/IAgentStartup.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Initialization/IAgentStartupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Initialization/IAgentStartupManager.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/DefaultInspectorFunctionManager.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/Execute.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/IInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/IInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunction.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionBuilder.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/IInspectorFunctionManager.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/Inspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/Inspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/InspectorFunctionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/InspectorFunctionBuilder.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/InspectorsInspectorFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/InspectorsInspectorFunction.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Inspectors/Tab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Inspectors/Tab.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/AgentStartupWebDiagnosticsInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AjaxInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AjaxInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/AspNetDiagnosticsInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/EnvironmentInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/EnvironmentInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/ExceptionProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/ExceptionProcessor.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/IExceptionProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/IExceptionProcessor.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/UserInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/AspNet/UserInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/EFDiagnosticsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/EFDiagnosticsInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/Proxies/IDbCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/EF/Proxies/IDbCommand.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/MvcDiagnosticsInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ActionResultTypes.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionContext.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionDescriptor.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IActionResult.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IRouteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IRouteData.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IView.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentContext.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewComponentDescriptor.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/IViewContext.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/Mvc/Proxies/ProxyAdapter.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Inspectors/WebDiagnosticsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Inspectors/WebDiagnosticsInspector.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Messaging/DefaultMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Messaging/DefaultMessageConverter.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Messaging/DefaultMessageIndexProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Messaging/DefaultMessageIndexProcessor.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Messaging/DefaultMessagePayloadFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Messaging/DefaultMessagePayloadFormatter.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Messaging/DefaultMessageTypeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Messaging/DefaultMessageTypeProcessor.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Messaging/IMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Messaging/IMessageConverter.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Messaging/IMessageIndexProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Messaging/IMessageIndexProcessor.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Messaging/IMessagePayloadFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Messaging/IMessagePayloadFormatter.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Messaging/IMessageTypeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Messaging/IMessageTypeProcessor.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Tabs/ConnectionTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Tabs/ConnectionTab.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Internal/Tabs/HeadersTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Internal/Tabs/HeadersTab.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/ActionViewDidFoundMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/ActionViewDidFoundMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/ActionViewFoundMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/ActionViewFoundMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/ActionViewNotFoundMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/ActionViewNotFoundMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/AfterActionInvokedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/AfterActionInvokedMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/AfterActionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/AfterActionMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/AfterActionResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/AfterActionResultMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/AfterActionViewInvokedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/AfterActionViewInvokedMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/AfterExecuteCommandMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/AfterExecuteCommandMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/AfterViewComponentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/AfterViewComponentMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/ArgumentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/ArgumentData.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/BeforeActionInvokedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/BeforeActionInvokedMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/BeforeActionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/BeforeActionMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/BeforeActionResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/BeforeActionResultMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/BeforeActionViewInvokedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/BeforeActionViewInvokedMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/BeforeExecuteCommandMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/BeforeExecuteCommandMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/BeforeViewComponentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/BeforeViewComponentMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/BeginRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/BeginRequestMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/BindingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/BindingData.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/DiagnosticsExceptionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/DiagnosticsExceptionMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/EndRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/EndRequestMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/EnvironmentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/EnvironmentMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/ExceptionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/ExceptionDetails.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/HostingExceptionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/HostingExceptionMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/IActionContentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/IActionContentMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/IActionRouteMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/IActionRouteMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/IExceptionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/IExceptionMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/RouteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/RouteData.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/StackFrame.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/TabMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/TabMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/UserIdentificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/UserIdentificationMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messages/ViewResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messages/ViewResultData.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/AgentBrokerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/AgentBrokerExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/DefaultAgentBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/DefaultAgentBroker.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/HttpMessagePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/HttpMessagePublisher.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/PromoteToContentTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/PromoteToContentTypeAttribute.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/PromoteToDateTimeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/PromoteToDateTimeAttribute.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/PromoteToDurationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/PromoteToDurationAttribute.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/PromoteToMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/PromoteToMethodAttribute.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/PromoteToStatusCodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/PromoteToStatusCodeAttribute.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/PromoteToUrlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/PromoteToUrlAttribute.cs -------------------------------------------------------------------------------- /src/Glimpse.Agent.AspNet/Messaging/PromoteToUserIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Agent.AspNet/Messaging/PromoteToUserIdAttribute.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/DefaultGlimpseContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/DefaultGlimpseContextAccessor.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Glimpse.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Glimpse.Common.csproj -------------------------------------------------------------------------------- /src/Glimpse.Common/GlimpseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/GlimpseOptions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/GlimpseServiceCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/GlimpseServiceCollectionBuilder.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/GlimpseServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/GlimpseServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/GlimpseServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/GlimpseServices.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/IGlimpseContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/IGlimpseContextAccessor.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/DefaultExtensionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/DefaultExtensionProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/FixedExtensionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/FixedExtensionProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/IExtensionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/IExtensionProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/IRegisterMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/IRegisterMiddleware.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/IRegisterServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/IRegisterServices.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/IResourceOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/IResourceOptionsProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/IStartupOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/IStartupOptions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/OptionsResourceOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/OptionsResourceOptionsProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/ResourceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/ResourceOptions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Initialization/StartupOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Initialization/StartupOptions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/ContextData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/ContextData.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Extensions/HashExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Extensions/HashExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Extensions/JsonSerializerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Extensions/JsonSerializerExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Extensions/PathStringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Extensions/PathStringExtension.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Extensions/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Extensions/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Extensions/TypeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Extensions/TypeExtension.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/IContextData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/IContextData.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Messaging/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Messaging/Operation.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Messaging/OperationOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Messaging/OperationOffset.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Messaging/OperationStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Messaging/OperationStack.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Messaging/OperationTiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Messaging/OperationTiming.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Messaging/Timing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Messaging/Timing.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Reflection/DefaultAssemblyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Reflection/DefaultAssemblyProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Reflection/DefaultTypeActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Reflection/DefaultTypeActivator.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Reflection/DefaultTypeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Reflection/DefaultTypeSelector.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Reflection/DefaultTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Reflection/DefaultTypeService.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Reflection/IAssemblyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Reflection/IAssemblyProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Reflection/ITypeActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Reflection/ITypeActivator.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Reflection/ITypeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Reflection/ITypeSelector.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Reflection/ITypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Reflection/ITypeService.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/SanitizeUserObjectsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/SanitizeUserObjectsHelper.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Serialization/DefaultJsonSerializerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Serialization/DefaultJsonSerializerProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Serialization/GuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Serialization/GuidConverter.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Serialization/IJsonSerializerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Serialization/IJsonSerializerProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Serialization/StringValuesConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Serialization/StringValuesConverter.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/Serialization/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/Serialization/TimeSpanConverter.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/ServiceCollectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/ServiceCollectionWrapper.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Internal/TypeNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Internal/TypeNameHelper.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/AgentBrokerObservations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/AgentBrokerObservations.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/AgentBrokerPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/AgentBrokerPayload.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/IAgentBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/IAgentBroker.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/IMessage.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/IMessagePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/IMessagePublisher.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/IMessageTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/IMessageTypeProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/Message.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/MessageContext.cs -------------------------------------------------------------------------------- /src/Glimpse.Common/Messaging/PromoteToAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Common/Messaging/PromoteToAttribute.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/AllowAgentAccessOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/AllowAgentAccessOptions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/AllowClientAccessOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/AllowClientAccessOptions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/AllowClientAccessRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/AllowClientAccessRemote.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/DefaultAllowRemoteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/DefaultAllowRemoteProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/DefaultMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/DefaultMetadataProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/DefaultResourceOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/DefaultResourceOptionsProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/IAllowAgentAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/IAllowAgentAccess.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/IAllowClientAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/IAllowClientAccess.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/IAllowRemoteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/IAllowRemoteProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/IMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/IMetadataProvider.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Configuration/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Configuration/Metadata.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Glimpse.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Glimpse.Server.csproj -------------------------------------------------------------------------------- /src/Glimpse.Server/GlimpseServerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/GlimpseServerMiddleware.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/GlimpseServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/GlimpseServerOptions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/GlimpseServerOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/GlimpseServerOptionsSetup.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/GlimpseServerServiceCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/GlimpseServerServiceCollectionBuilder.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/GlimpseServerServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/GlimpseServerServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Extensions/JsonStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Extensions/JsonStringExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Extensions/ParameterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Extensions/ParameterExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Extensions/UriTemplateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Extensions/UriTemplateExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/IResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/IResourceManager.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/ResourceManager.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/ResourceManagerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/ResourceManagerResult.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/ContextResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/ContextResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/EmbeddedFileResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/EmbeddedFileResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Agent/agent/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Agent/agent/agent.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/favicon.png -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/logo-long-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/logo-long-white.png -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/selawk.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/selawk.woff -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/selawk.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/selawk.woff2 -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/selawkl.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/selawkl.woff -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/selawkl.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/assets/selawkl.woff2 -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/index.html -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/main.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/client/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/client/main.min.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/index.html -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/jquery/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/jquery/jquery-2.1.1.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/jquery/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/jquery/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/JSXTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/JSXTransformer.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/react-with-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/react-with-addons.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/react-with-addons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/react-with-addons.min.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/react.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/react.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/reactjs/react.min.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/signalr/jquery.signalR-2.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/signalr/jquery.signalR-2.2.0.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/signalr/jquery.signalR-2.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/diagnostics/scripts/signalr/jquery.signalR-2.2.0.min.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/glimpse-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/glimpse-logo.png -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/selawk.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/selawk.woff -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/selawk.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/selawk.woff2 -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/selawkl.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/selawkl.woff -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/selawkl.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/assets/selawkl.woff2 -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/hud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/hud.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/hud.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/Embeded/Client/hud/hud.min.js -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/ExportConfigurationResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/ExportConfigurationResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/MessageHistoryResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/MessageHistoryResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/MessageIngressResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/MessageIngressResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/MessageStreamResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/MessageStreamResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/MetadataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/MetadataResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/NullResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/NullResponse.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/RequestHistoryResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/RequestHistoryResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Internal/Resources/ResponseDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Internal/Resources/ResponseDecorator.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Messaging/DefaultServerBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Messaging/DefaultServerBroker.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Messaging/IServerBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Messaging/IServerBroker.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Messaging/InProcessPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Messaging/InProcessPublisher.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Messaging/ServerBrokerObservations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Messaging/ServerBrokerObservations.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Properties/debugSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Profiles": [] 3 | } -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/ExceptionProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/ExceptionProblem.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/HttpContextExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/HttpStatusResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/HttpStatusResponse.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/IResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/IResource.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/IResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/IResourceBuilder.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/IResourceStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/IResourceStartup.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/IResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/IResponse.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/InvalidJsonProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/InvalidJsonProblem.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/InvalidMethodProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/InvalidMethodProblem.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/Json.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/MissingParameterProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/MissingParameterProblem.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/Problem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/Problem.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/RawJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/RawJson.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/ResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/ResourceBuilder.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/ResourceParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/ResourceParameter.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/ResourceParameterExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/ResourceParameterExtentions.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Resources/ResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Resources/ResourceType.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/ServerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/ServerMiddleware.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/ServerServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/ServerServices.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Storage/IQueryRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Storage/IQueryRequests.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Storage/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Storage/IStorage.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Storage/InMemoryStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Storage/InMemoryStorage.cs -------------------------------------------------------------------------------- /src/Glimpse.Server/Storage/StorageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse.Server/Storage/StorageExtensions.cs -------------------------------------------------------------------------------- /src/Glimpse/Glimpse.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse/Glimpse.nuspec -------------------------------------------------------------------------------- /src/Glimpse/lib/net35/Glimpse.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse/lib/net35/Glimpse.Core.dll -------------------------------------------------------------------------------- /src/Glimpse/lib/net40/Glimpse.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse/lib/net40/Glimpse.Core.dll -------------------------------------------------------------------------------- /src/Glimpse/lib/net45/Glimpse.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse/lib/net45/Glimpse.Core.dll -------------------------------------------------------------------------------- /src/Glimpse/lib/net451/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Glimpse/lib/netstandard1.6/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Glimpse/tools/glimpse.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse/tools/glimpse.psm1 -------------------------------------------------------------------------------- /src/Glimpse/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse/tools/init.ps1 -------------------------------------------------------------------------------- /src/Glimpse/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse/tools/install.ps1 -------------------------------------------------------------------------------- /src/Glimpse/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/Glimpse/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/src/readme.md -------------------------------------------------------------------------------- /test/Glimpse.FunctionalTest/FunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/Glimpse.FunctionalTest/FunctionalTests.cs -------------------------------------------------------------------------------- /test/Glimpse.FunctionalTest/Glimpse.FunctionalTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/Glimpse.FunctionalTest/Glimpse.FunctionalTest.csproj -------------------------------------------------------------------------------- /test/Glimpse.Prototype.UnitTest/Glimpse.Prototype.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/Glimpse.Prototype.UnitTest/Glimpse.Prototype.UnitTest.csproj -------------------------------------------------------------------------------- /test/Glimpse.Prototype.UnitTest/InMemoryStorageUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/Glimpse.Prototype.UnitTest/InMemoryStorageUnitTests.cs -------------------------------------------------------------------------------- /test/websites/Glimpse.FunctionalTest.Website/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/websites/Glimpse.FunctionalTest.Website/Controllers/HomeController.cs -------------------------------------------------------------------------------- /test/websites/Glimpse.FunctionalTest.Website/Glimpse.FunctionalTest.Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/websites/Glimpse.FunctionalTest.Website/Glimpse.FunctionalTest.Website.csproj -------------------------------------------------------------------------------- /test/websites/Glimpse.FunctionalTest.Website/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/websites/Glimpse.FunctionalTest.Website/Program.cs -------------------------------------------------------------------------------- /test/websites/Glimpse.FunctionalTest.Website/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/websites/Glimpse.FunctionalTest.Website/Startup.cs -------------------------------------------------------------------------------- /test/websites/Glimpse.FunctionalTest.Website/hosting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glimpse/Glimpse.Prototype/HEAD/test/websites/Glimpse.FunctionalTest.Website/hosting.ini --------------------------------------------------------------------------------