示例#1
0
 public ValueTask set_Math(MathCachedEntity value)
 {
     __Math = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "Math",
                value
                ));
 }
示例#2
0
 public async ValueTask <MathCachedEntity> get_Math()
 {
     if (__Math == null)
     {
         __Math = await EventHorizonBlazorInterop.GetClass <MathCachedEntity>(
             this.___guid,
             "Math",
             (entity) =>
         {
             return(new MathCachedEntity()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__Math);
 }