コード例 #1
0
 public ValueTask set_Uint8Array(Uint8ArrayConstructor value)
 {
     __Uint8Array = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "Uint8Array",
                value
                ));
 }
コード例 #2
0
 public async ValueTask <Uint8ArrayConstructor> get_Uint8Array()
 {
     if (__Uint8Array == null)
     {
         __Uint8Array = await EventHorizonBlazorInterop.GetClass <Uint8ArrayConstructor>(
             this.___guid,
             "Uint8Array",
             (entity) =>
         {
             return(new Uint8ArrayConstructor()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__Uint8Array);
 }