Exemple #1
0
 public ValueTask set_options(INodeMaterialOptionsCachedEntity value)
 {
     __options = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "options",
                value
                ));
 }
Exemple #2
0
 public async ValueTask <INodeMaterialOptionsCachedEntity> get_options()
 {
     if (__options == null)
     {
         __options = await EventHorizonBlazorInterop.GetClass <INodeMaterialOptionsCachedEntity>(
             this.___guid,
             "options",
             (entity) =>
         {
             return(new INodeMaterialOptionsCachedEntity()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__options);
 }