SYMBOL INDEX (103 symbols across 22 files) FILE: NsfwSpy.App/Controllers/NsfwSpyController.cs class NsfwSpyController (line 7) | [ApiController] method NsfwSpyController (line 13) | public NsfwSpyController(INsfwSpy nsfwSpy) method GetUrlMediaAsync (line 18) | [HttpGet("url/{url}")] method ClassifyImage (line 29) | [HttpPost("image")] method ClassifyGif (line 37) | [HttpPost("gif")] method ClassifyVideo (line 49) | [HttpPost("video")] method ConvertFormFileToByteArray (line 61) | private byte[] ConvertFormFileToByteArray(IFormFile file) class MediaInfo (line 72) | public class MediaInfo FILE: NsfwSpy.App/Pages/Error.cshtml.cs class ErrorModel (line 7) | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoSt... method ErrorModel (line 12) | public ErrorModel(ILogger logger) method OnGet (line 21) | public void OnGet() FILE: NsfwSpy.App/client-app/src/functions/selectFiles.ts type InputFile (line 4) | type InputFile = HTMLInputElement & { type Options (line 12) | type Options = { FILE: NsfwSpy.App/client-app/src/models/ImageFile.ts type ImageFile (line 1) | interface ImageFile { FILE: NsfwSpy.App/client-app/src/models/MediaInfo.ts type MediaInfo (line 1) | interface MediaInfo { FILE: NsfwSpy.App/client-app/src/models/NsfwSpyFramesResult.ts type NsfwSpyFramesResult (line 3) | interface NsfwSpyFramesResult { FILE: NsfwSpy.App/client-app/src/models/NsfwSpyResult.ts type NsfwSpyResult (line 1) | interface NsfwSpyResult { FILE: NsfwSpy.PerformanceTesting/PerformanceResult.cs class PerformanceResult (line 9) | class PerformanceResult method PerformanceResult (line 21) | public PerformanceResult(string key) FILE: NsfwSpy.PerformanceTesting/Program.cs class Program (line 9) | class Program method Main (line 11) | static void Main(string[] args) FILE: NsfwSpy.Test/UnitTests.cs class UnitTests (line 10) | public class UnitTests method ClassifyImageByteArray_ValidByteArray (line 12) | [Theory] method ClassifyImageByteArray_InvalidByteArray (line 27) | [Fact] method ClassifyImageUri_ValidUri (line 34) | [Theory] method ClassifyImageUri_CustomWebClient (line 48) | [Theory] method ClassifyImageFilePath_ValidFilePath (line 64) | [Theory] method ClassifyImageFilePath_InvalidFilePath (line 78) | [Fact] method ClassifyImageUriAsync_ValidUri (line 87) | [Theory] method ClassifyImageUriAsync_CustomWebClient (line 101) | [Theory] method ClassifyImageFilePathAsync_ValidFilePath (line 117) | [Theory] method ClassifyGifByteArray_ValidByteArray (line 131) | [Fact] method ClassifyGifFilePath_ValidFilePath (line 144) | [Fact] method ClassifyGifFilePath_ClassifyEvery2ndFrame (line 156) | [Fact] method ClassifyGifFilePath_EndEarlyOnNsfw (line 172) | [Fact] method ClassifyGifUri_ValidUri (line 188) | [Fact] method ClassifyGifUri_ClassifyEvery2ndFrame (line 200) | [Fact] method ClassifyGifUri_EndEarlyOnNsfw (line 216) | [Fact] method ClassifyGifFilePathAsync_ValidFilePath (line 232) | [Fact] method ClassifyGifUriAsync_ValidUri (line 244) | [Fact] method ClassifyVideoByteArray_ValidByteArray (line 256) | [Theory] method ClassifyVideoFilePath_ValidFilePath (line 277) | [Theory] method ClassifyVideoFilePath_ClassifyEvery2ndFrame (line 297) | [Theory] method ClassifyVideoFilePath_EndEarlyOnNsfw (line 321) | [Theory] method ClassifyVideoUri_ValidUri (line 341) | [Fact] method ClassifyVideoUri_ClassifyEvery2ndFrame (line 353) | [Fact] method ClassifyVideoUri_EndEarlyOnNsfw (line 369) | [Fact] method ClassifyVideoFilePathAsync_ValidFilePath (line 385) | [Theory] method ClassifyVideoUriAsync_ValidUri (line 405) | [Fact] FILE: NsfwSpy.Train/ImageData.cs class ImageData (line 9) | class ImageData FILE: NsfwSpy.Train/Program.cs class Program (line 11) | class Program method Main (line 13) | static void Main(string[] args) method LoadImagesFromDirectory (line 76) | public static IEnumerable LoadImagesFromDirectory(string fo... FILE: NsfwSpy/INsfwSpy.cs type INsfwSpy (line 8) | public interface INsfwSpy method ClassifyGif (line 10) | NsfwSpyFramesResult ClassifyGif(byte[] gifImage, VideoOptions videoOpt... method ClassifyGif (line 11) | NsfwSpyFramesResult ClassifyGif(string filePath, VideoOptions videoOpt... method ClassifyGif (line 12) | NsfwSpyFramesResult ClassifyGif(Uri uri, WebClient webClient = null, V... method ClassifyGifAsync (line 13) | Task ClassifyGifAsync(string filePath, VideoOptio... method ClassifyGifAsync (line 14) | Task ClassifyGifAsync(Uri uri, WebClient webClien... method ClassifyImage (line 15) | NsfwSpyResult ClassifyImage(byte[] imageData); method ClassifyImage (line 16) | NsfwSpyResult ClassifyImage(string filePath); method ClassifyImage (line 17) | NsfwSpyResult ClassifyImage(Uri uri, WebClient webClient = null); method ClassifyImageAsync (line 18) | Task ClassifyImageAsync(string filePath); method ClassifyImageAsync (line 19) | Task ClassifyImageAsync(Uri uri, WebClient webClient = ... method ClassifyImages (line 20) | List ClassifyImages(IEnumerable filesPaths, Acti... method ClassifyVideo (line 21) | NsfwSpyFramesResult ClassifyVideo(byte[] video, VideoOptions videoOpti... method ClassifyVideo (line 22) | NsfwSpyFramesResult ClassifyVideo(string filePath, VideoOptions videoO... method ClassifyVideo (line 23) | NsfwSpyFramesResult ClassifyVideo(Uri uri, WebClient webClient = null,... method ClassifyVideoAsync (line 24) | Task ClassifyVideoAsync(string filePath, VideoOpt... method ClassifyVideoAsync (line 25) | Task ClassifyVideoAsync(Uri uri, WebClient webCli... FILE: NsfwSpy/NsfwSpy.cs class NsfwSpy (line 17) | public class NsfwSpy : INsfwSpy method NsfwSpy (line 21) | public NsfwSpy() method ClassifyImage (line 36) | public NsfwSpyResult ClassifyImage(byte[] imageData) method ClassifyImage (line 59) | public NsfwSpyResult ClassifyImage(string filePath) method ClassifyImage (line 72) | public NsfwSpyResult ClassifyImage(Uri uri, WebClient webClient = null) method ClassifyImageAsync (line 86) | public async Task ClassifyImageAsync(string filePath) method ClassifyImageAsync (line 99) | public async Task ClassifyImageAsync(Uri uri, WebClient... method ClassifyImages (line 114) | public List ClassifyImages(IEnumerable filesPath... method ClassifyGif (line 141) | public NsfwSpyFramesResult ClassifyGif(byte[] gifImage, VideoOptions v... method ClassifyGif (line 186) | public NsfwSpyFramesResult ClassifyGif(string filePath, VideoOptions v... method ClassifyGif (line 200) | public NsfwSpyFramesResult ClassifyGif(Uri uri, WebClient webClient = ... method ClassifyGifAsync (line 215) | public async Task ClassifyGifAsync(string filePat... method ClassifyGifAsync (line 229) | public async Task ClassifyGifAsync(Uri uri, WebCl... method ClassifyVideo (line 244) | public NsfwSpyFramesResult ClassifyVideo(byte[] video, VideoOptions vi... method ClassifyVideo (line 290) | public NsfwSpyFramesResult ClassifyVideo(string filePath, VideoOptions... method ClassifyVideo (line 304) | public NsfwSpyFramesResult ClassifyVideo(Uri uri, WebClient webClient ... method ClassifyVideoAsync (line 319) | public async Task ClassifyVideoAsync(string fileP... method ClassifyVideoAsync (line 333) | public async Task ClassifyVideoAsync(Uri uri, Web... FILE: NsfwSpy/Resources/ClassificationFailedException.cs class ClassificationFailedException (line 7) | public class ClassificationFailedException : Exception method ClassificationFailedException (line 9) | public ClassificationFailedException(string message) FILE: NsfwSpy/Resources/EClassificationType.cs type EClassificationType (line 9) | internal enum EClassificationType FILE: NsfwSpy/Resources/ModelInput.cs class ModelInput (line 9) | class ModelInput method ModelInput (line 11) | public ModelInput(byte[] image) FILE: NsfwSpy/Resources/ModelOutput.cs class ModelOutput (line 9) | class ModelOutput FILE: NsfwSpy/Resources/NsfwSpyFramesResult.cs class NsfwSpyFramesResult (line 11) | public class NsfwSpyFramesResult method NsfwSpyFramesResult (line 28) | public NsfwSpyFramesResult(Dictionary frames) FILE: NsfwSpy/Resources/NsfwSpyResult.cs class NsfwSpyResult (line 12) | public class NsfwSpyResult method NsfwSpyResult (line 44) | public NsfwSpyResult() method NsfwSpyResult (line 49) | internal NsfwSpyResult(ModelOutput modelOutput) method ToDictionary (line 67) | public Dictionary ToDictionary() FILE: NsfwSpy/Resources/NsfwSpyValue.cs class NsfwSpyValue (line 9) | public class NsfwSpyValue method NsfwSpyValue (line 14) | public NsfwSpyValue(string filePath, NsfwSpyResult result) FILE: NsfwSpy/Resources/VideoOptions.cs class VideoOptions (line 10) | public class VideoOptions