Exemple #1
0
 public ValueTask set_shadowDepthWrapper(ShadowDepthWrapper value)
 {
     __shadowDepthWrapper = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "shadowDepthWrapper",
                value
                ));
 }
Exemple #2
0
 public async ValueTask <ShadowDepthWrapper> get_shadowDepthWrapper()
 {
     if (__shadowDepthWrapper == null)
     {
         __shadowDepthWrapper = await EventHorizonBlazorInterop.GetClass <ShadowDepthWrapper>(
             this.___guid,
             "shadowDepthWrapper",
             (entity) =>
         {
             return(new ShadowDepthWrapper()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__shadowDepthWrapper);
 }