Commit Graph

10684 Commits (43ae480ffc8ed0095dd42d88ca801c20b33d8e5e)

Author SHA1 Message Date
Jason Card d33634604e
Update formatting.md (#18369) 2020-05-18 16:48:30 -05:00
Luke Latham 654d371cd2
Name and role for Blazor with Identity Server (#18278) 2020-05-18 12:04:46 -05:00
Luke Latham 5658e86f1e
Name and role for Blazor with Identity Server (#18278) 2020-05-18 12:04:15 -05:00
Kirk Larkin 2ac9a9aa45
Link from SignalR groups to authn/authz (#18354) 2020-05-18 10:50:44 -05:00
Ben Randall d06487708d
Update javascript-client.md (#18348)
Fixing range for `Connect to a hub` section sample code.  

Current code shows this:
```js
const connection = new signalR.HubConnectionBuilder()
    .withUrl("/chatHub")
    .configureLogging(signalR.LogLevel.Information)
    .build();

start();

/* this is here to show an alternative to start, with a then
```

New should show this:
```js
const connection = new signalR.HubConnectionBuilder()
    .withUrl("/chatHub")
    .configureLogging(signalR.LogLevel.Information)
    .build();

async function start() {
    try {
        await connection.start();
        console.log("connected");
    } catch (err) {
        console.log(err);
        setTimeout(() => start(), 5000);
    }
};

connection.onclose(async () => {
    await start();
});

// Start the connection.
start();

/* this is here to show an alternative to start, with a then
connection.start().then(() => console.log("connected"));
*/

/* this is here to show another alternative to start, with a catch
connection.start().catch(err => console.error(err));
*/
```
2020-05-18 10:46:25 -05:00
Luke Latham bd98a445d1
Blazor WASM security NOTE update (#18361) 2020-05-18 07:01:44 -05:00
eladeyal-intel d55f4ea305
typo (#18360) 2020-05-18 06:47:05 -05:00
Luke Latham 7268694a72
Blazor WASM security topic updates (#18356) 2020-05-17 13:56:40 -05:00
Luke Latham 6015f7116a
Blazor ext in service worker assets manifest (#18241) 2020-05-17 07:12:23 -05:00
Luke Latham 9a58f2eff7
Blazor with OIDC v2.0 endpoint coverage (#18308) 2020-05-17 06:25:44 -05:00
Luke Latham 3f9b34de03
Link updates (#18347) 2020-05-16 15:33:03 -05:00
Greg Ingram 5d3889d07d
Fixed Built-in logging providers links in index.md (#18340) 2020-05-16 08:36:31 -05:00
Luke Latham ae82d62664
Change 'Azure Websites' to 'Azure App Service' (#18341) 2020-05-16 07:16:43 -05:00
Luke Latham bc9f677fb3
Cross-link property binding in Blazor forms topic (#18338) 2020-05-15 20:28:26 -05:00
mrlife d7363205a2
Removed `@` symbol in `OnSubmit` (#18333) 2020-05-15 19:55:04 -05:00
Luke Latham 7520f42b20
Blazor WASM perf best practices topic (#18288) 2020-05-15 19:50:20 -05:00
Andrew Stanton-Nurse 1c8fc3decc
SignalR Client Features doc -> SignalR Clients overview doc (#18293) 2020-05-15 13:01:38 -07:00
Kirk Larkin c1030c4d92
Add xref to Web SDK in VS Publish Profiles (#18312)
* Add xref to Web SDK in VS Publish Profiles

* Add link to .NET Core SDK
2020-05-15 09:11:29 -10:00
Sayed Ibrahim Hashimi 5514de0385
minor update for vsmac content in Intro Razor Pages doc (#18323) 2020-05-15 11:59:09 -05:00
Luke Latham 3d3f5ada4d
Integration testing 2.x set env update (#18254) 2020-05-15 08:11:39 -05:00
Stephen Hoerner c92bb5ab95
Add info for setting environment on IWebHostBuilder (#18313) 2020-05-15 08:10:02 -05:00
Iliyan Angelov 386ec7fd29
Simplify the using statement (#18317) 2020-05-15 08:08:06 -05:00
Rick Anderson fbecab1ce5
Testserver limitations (#18283)
* Testserver limitations

* Testserver limitations

* Testserver limitations

* Update aspnetcore/test/middleware.md

Co-authored-by: Chris Ross <Tratcher@Outlook.com>

* final fix

Co-authored-by: Chris Ross <Tratcher@Outlook.com>
2020-05-14 08:22:20 -10:00
Luke Latham 6d607a0b66
VS4Mac 8.6 updates (#18262) 2020-05-14 13:05:02 -05:00
Luke Latham 8f6b020647
Blazor Security Overview update (#18311) 2020-05-14 12:57:23 -05:00
Luke Latham af4f55cbe4
Blazor UE improvements (#18304) 2020-05-14 08:27:05 -05:00
Yehuda Ringler 8f16e6f05d
fix markdown url (#18299) 2020-05-13 17:04:08 -10:00
Yehuda Ringler 0d65dc6d68
add to 3.x section , fix spelling (#18298)
* add to 3.x section , fix spelling

* Update aspnetcore/performance/caching/middleware.md

Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com>

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com>
2020-05-13 16:21:55 -10:00
Rick Anderson 1365bdc942
Update cache in background (#18295)
* Update cache in background

* Update cache in background
2020-05-13 16:21:31 -10:00
Yehuda Ringler c187785776
Fix custom middleware limitations (#18178)
* Fix #18177

* Document also 3.0, fix typo

* Update middleware.md

* Update middleware.md

* Update middleware.md

* Update middleware.md

* #18177: update middleware.md

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
2020-05-13 13:33:06 -10:00
Casey Marquis bf1aca10ba
hubcontext.md: updates examples (#18284)
* Update hubcontext.md

Failing to call next causes bad things to happen. Better to leave it in the example.

* Update hubcontext.md

This shows how to access IHost for use outside of aspnetcore. ie integration with other dependency injection frameworks

* hubcontext.md: Move note back to original location.

* Update hubcontext.md

* Update aspnetcore/signalr/hubcontext.md

Co-authored-by: Brennan <brecon@microsoft.com>

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
Co-authored-by: Brennan <brecon@microsoft.com>
2020-05-13 12:23:18 -10:00
Rick Anderson 9ab5adf2df
Custom/logger (#18258)
* Add custom logger documentaions (#11842)

* Add a section in the docs aspnetcore/fundamentals/logging/index.md
* Add a sample at aspnetcore/fundamentals/logging/loggermessage/samples/3.1/CustomLogger

* Custom loggiing

* Custom loggiing

* Custom loggiing

* Custom loggiing

* Custom loggiing

* Custom loggiing

* Apply suggestions from code review

Co-authored-by: Brennan <brecon@microsoft.com>

* react to feedback

* react to feedback

* react to feedback

Co-authored-by: Juergen Gutsch <juergen@gutsch-online.de>
Co-authored-by: Brennan <brecon@microsoft.com>
2020-05-13 12:18:38 -10:00
Wade Pickett 511573e25d
gRPC sample link fix (#18282) 2020-05-12 16:13:09 -07:00
Scott Addie 41ecfaa1b7
Move MS Learn ToC links to Tutorials (#18279) 2020-05-12 12:26:41 -10:00
Kirk Larkin 9a23458e4f
Explain the Dockerfile distinct layers approach (#18274) 2020-05-12 10:42:38 -10:00
Dave Pringle e4f8439dfb
Add 3.x SignalR background service sample (#17318)
* Add 3.0 SignalR background service sample

* Fix background-services.md date

* Compressed a few monikers

* Renamed 3.0 sample to 3.x

* Apply suggestion

Co-Authored-By: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>

* Shrink ClockHubClient.StopAsync snippet by 1 line

Also tweaked the wording slightly in the "any class that inherits from hub..." note

* Remove future tense from note

* Use async On overload in 3.x sample

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
2020-05-12 08:12:37 -10:00
Rick Anderson 78765abf34
Update localization.md (#18257) 2020-05-11 11:13:19 -10:00
Rick Anderson 21647eebe9
Update key-encryption-at-rest.md (#18214)
* Update key-encryption-at-rest.md

* Update key-encryption-at-rest.md

* Update key-encryption-at-rest.md
2020-05-11 11:12:33 -10:00
Hao Kung fdd757339a
Add Identity(1,1) (#18140) 2020-05-11 11:12:19 -10:00
Daniel Roth abf25d04e1
Remove B2C from AAD doc (#18253) 2020-05-11 14:47:52 -05:00
Luke Latham d40ef2d8cc
Component namespaces for custom folders (#18245) 2020-05-11 11:38:06 -05:00
Luke Latham c0e23c15bf
Blazor sync context updates (#18242) 2020-05-11 10:55:32 -05:00
John Kelly 41ab9bd644
Fix broken link (#18239) 2020-05-11 10:37:47 -05:00
Luke Latham f1f49f2f1f
Blazor call web API enhancements (#18240) 2020-05-11 10:28:09 -05:00
Kirk Larkin 997f70fbce
Fix broken links and some code highlights in Logging (#18227) 2020-05-10 15:51:13 -10:00
Rick Anderson 0b6d5ec271
CSAT title: Globalization and localization in ASP.NET Core (#18228)
* CSAT title: Globalization and localization in ASP.NET Core

* work

* work

* work

* work
2020-05-10 15:50:02 -10:00
MaartenGDev 75a052d311
Fix Azure AD B2C markdown link (#18232) 2020-05-10 12:28:06 -05:00
Rick Anderson 6124e6c752
CSAT for host/deploy to IIS (#18165)
* CSAT for host/deploy to IIS

* CSAT for host/deploy to IIS

* CSAT for host/deploy to IIS

* CSAT for host/deploy to IIS

* revert YML
2020-05-09 09:37:44 -10:00
Dzmitry Lahoda d382e26049
fixed link and made button title same as on page (#18216) 2020-05-08 15:41:11 -10:00
Rick Anderson 592cf4a15f
recommended patterns for multi-tenancy in DI (#18220)
* recommended patterns for multi-tenancy in DI

* recommended patterns for multi-tenancy in DI
2020-05-08 15:38:29 -10:00