Ejemplo n.º 1
0
 public BindOpMobileResponse.Builder SetSafeDeviceList(micromsg.SafeDeviceList value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.hasSafeDeviceList = true;
     this.result.safeDeviceList_   = value;
     return(this);
 }
Ejemplo n.º 2
0
 public UserInfoExt.Builder SetSafeDeviceList(micromsg.SafeDeviceList value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.hasSafeDeviceList = true;
     this.result.safeDeviceList_   = value;
     return(this);
 }
Ejemplo n.º 3
0
 public BindOpMobileResponse.Builder MergeSafeDeviceList(micromsg.SafeDeviceList value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     if (this.result.hasSafeDeviceList && (this.result.safeDeviceList_ != micromsg.SafeDeviceList.DefaultInstance))
     {
         this.result.safeDeviceList_ = micromsg.SafeDeviceList.CreateBuilder(this.result.safeDeviceList_).MergeFrom(value).BuildPartial();
     }
     else
     {
         this.result.safeDeviceList_ = value;
     }
     this.result.hasSafeDeviceList = true;
     return(this);
 }