Exemplo n.º 1
0
 public ValueTask set_MSGesture(MSGesture value)
 {
     __MSGesture = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "MSGesture",
                value
                ));
 }
Exemplo n.º 2
0
 public async ValueTask <MSGesture> get_MSGesture()
 {
     if (__MSGesture == null)
     {
         __MSGesture = await EventHorizonBlazorInterop.GetClass <MSGesture>(
             this.___guid,
             "MSGesture",
             (entity) =>
         {
             return(new MSGesture()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__MSGesture);
 }