10 references to MediaSource
Microsoft.AspNetCore.Components.Web.Tests (10)
Media\FileDownloadTest.cs (3)
35[nameof(FileDownload.Source)] = new MediaSource(SampleBytes, "application/octet-stream", "file-init"), 130[nameof(FileDownload.Source)] = new MediaSource(SampleBytes, "application/octet-stream", "file-href"), 147[nameof(FileDownload.Source)] = new MediaSource(SampleBytes, "application/octet-stream", key),
Media\ImageTest.cs (7)
40var source = new MediaSource(PngBytes, "image/png", cacheKey: "png-1"); 57var s1 = new MediaSource(new byte[10], "image/png", cacheKey: "same"); 63var s2 = new MediaSource(new byte[20], "image/png", cacheKey: "same"); 99var s1 = new MediaSource(new byte[4], "image/png", "key-a"); 104var s2 = new MediaSource(new byte[6], "image/png", "key-b"); 120var s1 = new MediaSource(new byte[10], "image/png", "k1"); 126var s2 = new MediaSource(new byte[10], "image/png", "k2");