示例#1
0
 public FileReaderService(IJSRuntime jsRuntime, IFileReaderServiceOptions options)
 {
     this.Options = options;
     this._fileReaderJsInterop = new FileReaderJsInterop(jsRuntime, options);
 }
 public FileReaderJsInterop(IJSRuntime jsRuntime, IFileReaderServiceOptions options)
 {
     CurrentJSRuntime     = jsRuntime;
     _options             = options;
     _needsInitialization = options.InitializeOnFirstCall;
 }
示例#3
0
 public FileReaderService(IJSRuntime jsRuntime, IFileReaderServiceOptions options)
 {
     this.Options = options;
     this._fileReaderJsInterop = new FileReaderJsInterop(jsRuntime, options.InitializeOnFirstCall);
 }