示例#1
0
 public override void GetIsAutoLogin(ISharedDataSerializer.OnGetIsAutoLogin onFinishDelegate)
 {
     ISharedDataSerializer.LastErrno = DataSerializerErrorCode.Success;
     this.Storage.GetIsAutoLogin(delegate(SByte isAutoLogin)
     {
         onFinishDelegate(ISharedDataSerializer.LastErrno, isAutoLogin);
     });
 }
示例#2
0
 public abstract void GetIsAutoLogin(ISharedDataSerializer.OnGetIsAutoLogin onFinishDelegate);