Example #1
0
 public ValueTask set_WebGLRenderingContext(WebGLRenderingContextCachedEntity value)
 {
     __WebGLRenderingContext = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "WebGLRenderingContext",
                value
                ));
 }
Example #2
0
 public async ValueTask <WebGLRenderingContextCachedEntity> get_WebGLRenderingContext()
 {
     if (__WebGLRenderingContext == null)
     {
         __WebGLRenderingContext = await EventHorizonBlazorInterop.GetClass <WebGLRenderingContextCachedEntity>(
             this.___guid,
             "WebGLRenderingContext",
             (entity) =>
         {
             return(new WebGLRenderingContextCachedEntity()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__WebGLRenderingContext);
 }