4 implementations of GetChangeToken
ApiExplorerWebSite (1)
ActionDescriptorChangeProvider.cs (1)
18public IChangeToken GetChangeToken()
Microsoft.AspNetCore.Mvc (1)
HotReloadService.cs (1)
64IChangeToken IActionDescriptorChangeProvider.GetChangeToken() => new CancellationChangeToken(_tokenSource.Token);
Microsoft.AspNetCore.Mvc.Core.Test (1)
Infrastructure\DefaultActionDescriptorCollectionProviderTest.cs (1)
178public IChangeToken GetChangeToken()
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
PageActionDescriptorChangeProvider.cs (1)
56public IChangeToken GetChangeToken()
4 references to GetChangeToken
Microsoft.AspNetCore.Mvc.Core (4)
Infrastructure\DefaultActionDescriptorCollectionProvider.cs (2)
82return _actionDescriptorChangeProviders[0].GetChangeToken(); 88changeTokens[i] = _actionDescriptorChangeProviders[i].GetChangeToken();
Infrastructure\IActionDescriptorChangeProvider.cs (2)
16/// The change token returned from <see cref="GetChangeToken"/> is only for use inside the MVC infrastructure. 28/// The change token returned from <see cref="GetChangeToken"/> is only for use inside the MVC infrastructure.