Example #1
0
 public ValueTask set_customShaderOptions(ICustomShaderOptionsCachedEntity value)
 {
     __customShaderOptions = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "customShaderOptions",
                value
                ));
 }
Example #2
0
 public async ValueTask <ICustomShaderOptionsCachedEntity> get_customShaderOptions()
 {
     if (__customShaderOptions == null)
     {
         __customShaderOptions = await EventHorizonBlazorInterop.GetClass <ICustomShaderOptionsCachedEntity>(
             this.___guid,
             "customShaderOptions",
             (entity) =>
         {
             return(new ICustomShaderOptionsCachedEntity()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__customShaderOptions);
 }