本文整理汇总了C#中Zetbox.ReadBoolean方法的典型用法代码示例。如果您正苦于以下问题:C# Zetbox.ReadBoolean方法的具体用法?C# Zetbox.ReadBoolean怎么用?C# Zetbox.ReadBoolean使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zetbox
的用法示例。
在下文中一共展示了Zetbox.ReadBoolean方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
binStream.Read(out this._fk_ChangedBy);
this._isChangedOnSet = binStream.ReadBoolean();
if (this._isChangedOnSet) {
this._ChangedOn = binStream.ReadDateTime();
}
this._Comment = binStream.ReadString();
binStream.Read(out this._fk_CreatedBy);
this._isCreatedOnSet = binStream.ReadBoolean();
if (this._isCreatedOnSet) {
this._CreatedOn = binStream.ReadDateTime();
}
this._Description = binStream.ReadString();
binStream.Read(out this._fk_DestinationObjectClass);
this._isExportGuidSet = binStream.ReadBoolean();
if (this._isExportGuidSet) {
this._ExportGuid = binStream.ReadGuid();
}
this._Name = binStream.ReadString();
binStream.Read(out this._fk_StagingDatabase);
_Status = (Zetbox.App.SchemaMigration.MappingStatus?)binStream.ReadNullableInt32();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例2: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
this._isExportGuidSet = binStream.ReadBoolean();
if (this._isExportGuidSet) {
this._ExportGuid = binStream.ReadGuid();
}
binStream.Read(out this._fk_Module);
this._Name = binStream.ReadString();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例3: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
this._Nullable = binStream.ReadNullableDateTime();
this._isNullableWithDefaultSet = binStream.ReadBoolean();
if (this._isNullableWithDefaultSet) {
this._NullableWithDefault = binStream.ReadNullableDateTime();
}
this._Standard = binStream.ReadDateTime();
this._isStandardWithDefaultSet = binStream.ReadBoolean();
if (this._isStandardWithDefaultSet) {
this._StandardWithDefault = binStream.ReadDateTime();
}
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例4: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
this._fk_ControlKind = binStream.ReadNullableInt32();
this._ControlTypeRef = binStream.ReadString();
this._isDeletedSet = binStream.ReadBoolean();
if (this._isDeletedSet) {
this._Deleted = binStream.ReadBoolean();
}
this._isExportGuidSet = binStream.ReadBoolean();
if (this._isExportGuidSet) {
this._ExportGuid = binStream.ReadGuid();
}
this._fk_Module = binStream.ReadNullableInt32();
this._Toolkit = (Zetbox.App.GUI.Toolkit)binStream.ReadNullableInt32();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例5: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
binStream.Read(out this._fk_ChangedBy);
this._isChangedOnSet = binStream.ReadBoolean();
if (this._isChangedOnSet) {
this._ChangedOn = binStream.ReadDateTime();
}
binStream.Read(out this._fk_CreatedBy);
this._isCreatedOnSet = binStream.ReadBoolean();
if (this._isCreatedOnSet) {
this._CreatedOn = binStream.ReadDateTime();
}
this._Description = binStream.ReadString();
this._isExportGuidSet = binStream.ReadBoolean();
if (this._isExportGuidSet) {
this._ExportGuid = binStream.ReadGuid();
}
this._HelpText = binStream.ReadString();
this._IsList = binStream.ReadBoolean();
this._isIsNullableSet = binStream.ReadBoolean();
if (this._isIsNullableSet) {
this._IsNullable = binStream.ReadBoolean();
}
this._IsReturnParameter = binStream.ReadBoolean();
this._Label = binStream.ReadString();
binStream.Read(out this._fk_Method);
this._Parameter_pos = binStream.ReadNullableInt32();
this._Name = binStream.ReadString();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例6: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
this._fk_ChangedBy = binStream.ReadNullableInt32();
this._isChangedOnSet = binStream.ReadBoolean();
if (this._isChangedOnSet) {
this._ChangedOn = binStream.ReadDateTime();
}
this._Comment = binStream.ReadString();
this._isCompareNullsSet = binStream.ReadBoolean();
if (this._isCompareNullsSet) {
this._CompareNulls = binStream.ReadBoolean();
}
this._fk_CreatedBy = binStream.ReadNullableInt32();
this._isCreatedOnSet = binStream.ReadBoolean();
if (this._isCreatedOnSet) {
this._CreatedOn = binStream.ReadDateTime();
}
((Zetbox.App.SchemaMigration.SourceColumn)this).DbType = (Zetbox.App.SchemaMigration.ColumnType)binStream.ReadNullableInt32();
this._Description = binStream.ReadString();
DestinationProperty_was_eagerLoaded = binStream.ReadBoolean();
this._isExportGuidSet = binStream.ReadBoolean();
if (this._isExportGuidSet) {
this._ExportGuid = binStream.ReadGuid();
}
this._IsNullable = binStream.ReadNullableBoolean();
this._Name = binStream.ReadString();
this._fk_References = binStream.ReadNullableInt32();
this._Size = binStream.ReadNullableInt32();
this._fk_SourceTable = binStream.ReadNullableInt32();
((Zetbox.App.SchemaMigration.SourceColumn)this).Status = (Zetbox.App.SchemaMigration.MappingStatus?)binStream.ReadNullableInt32();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例7: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
Antworten_was_eagerLoaded = binStream.ReadBoolean();
{
bool containsList = binStream.ReadBoolean();
if (containsList)
{
int numElements = binStream.ReadInt32();
AntwortenIds = new List<int>(numElements);
while (numElements-- > 0)
{
int id = binStream.ReadInt32();
AntwortenIds.Add(id);
}
}
}
this._BogenNummer = binStream.ReadNullableInt32();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例8: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
this._Identity = binStream.ReadString();
this._MessageFormat = binStream.ReadString();
this._NewValue = binStream.ReadString();
this._OldValue = binStream.ReadString();
this._PropertyName = binStream.ReadString();
this._isTimestampSet = binStream.ReadBoolean();
if (this._isTimestampSet) {
this._Timestamp = binStream.ReadNullableDateTime();
}
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例9: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
this._CalendarConfiguration = binStream.ReadString();
this._DisplayName = binStream.ReadString();
this._isIsDeactivatedSet = binStream.ReadBoolean();
if (this._isIsDeactivatedSet) {
this._IsDeactivated = binStream.ReadBoolean();
}
this._LoginToken = binStream.ReadNullableGuid();
{
// use backing store to avoid notifications
this.OpenIDImpl = binStream.ReadCompoundObject<Zetbox.App.Base.OpenIDMemoryImpl>();
this.OpenIDImpl.AttachToObject(this, "OpenID");
}
this._Password = binStream.ReadString();
this._UserName = binStream.ReadString();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例10: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
binStream.Read(out this._fk_ChangedBy);
this._isChangedOnSet = binStream.ReadBoolean();
if (this._isChangedOnSet) {
this._ChangedOn = binStream.ReadDateTime();
}
binStream.Read(out this._fk_CreatedBy);
this._isCreatedOnSet = binStream.ReadBoolean();
if (this._isCreatedOnSet) {
this._CreatedOn = binStream.ReadDateTime();
}
binStream.Read(out this._fk_Identity);
this._Name = binStream.ReadString();
binStream.Read(out this._fk_Parent);
this._ParentName = binStream.ReadString();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例11: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
binStream.Read(out this._fk_BaseObjectClass);
this.Proxy.CodeTemplate = binStream.ReadString();
binStream.Read(out this._fk_DefaultViewModelDescriptor);
this._isIsAbstractSet = binStream.ReadBoolean();
if (this._isIsAbstractSet) {
this.Proxy.IsAbstract = binStream.ReadBoolean();
}
this._isIsCreatedProgrammaticallySet = binStream.ReadBoolean();
if (this._isIsCreatedProgrammaticallySet) {
this.Proxy.IsCreatedProgrammatically = binStream.ReadBoolean();
}
this._isIsFrozenObjectSet = binStream.ReadBoolean();
if (this._isIsFrozenObjectSet) {
this.Proxy.IsFrozenObject = binStream.ReadBoolean();
}
this._isIsSimpleObjectSet = binStream.ReadBoolean();
if (this._isIsSimpleObjectSet) {
this.Proxy.IsSimpleObject = binStream.ReadBoolean();
}
Proxy.TableMapping = (Zetbox.App.Base.TableMapping?)binStream.ReadNullableInt32();
this.Proxy.TableName = binStream.ReadString();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例12: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
binStream.Read(out this._fk_DefaultDisplayKind);
binStream.Read(out this._fk_DefaultEditorKind);
binStream.Read(out this._fk_DefaultGridCellDisplayKind);
binStream.Read(out this._fk_DefaultGridCellEditorKind);
binStream.Read(out this._fk_DefaultGridCellPreEditorKind);
this._isDeletedSet = binStream.ReadBoolean();
if (this._isDeletedSet) {
this._Deleted = binStream.ReadBoolean();
}
this._Description = binStream.ReadString();
this._isExportGuidSet = binStream.ReadBoolean();
if (this._isExportGuidSet) {
this._ExportGuid = binStream.ReadGuid();
}
binStream.Read(out this._fk_Module);
this._ViewModelTypeRef = binStream.ReadString();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例13: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
binStream.Read(out this._fk_ChangedBy);
this._isChangedOnSet = binStream.ReadBoolean();
if (this._isChangedOnSet) {
this._ChangedOn = binStream.ReadDateTime();
}
Constraints_was_eagerLoaded = binStream.ReadBoolean();
{
bool containsList = binStream.ReadBoolean();
if (containsList)
{
int numElements = binStream.ReadInt32();
ConstraintsIds = new List<int>(numElements);
while (numElements-- > 0)
{
int id = binStream.ReadInt32();
ConstraintsIds.Add(id);
}
}
}
binStream.Read(out this._fk_CreatedBy);
this._isCreatedOnSet = binStream.ReadBoolean();
if (this._isCreatedOnSet) {
this._CreatedOn = binStream.ReadDateTime();
}
binStream.Read(out this._fk_DefaultIcon);
this._Description = binStream.ReadString();
this._isExportGuidSet = binStream.ReadBoolean();
if (this._isExportGuidSet) {
this._ExportGuid = binStream.ReadGuid();
}
Methods_was_eagerLoaded = binStream.ReadBoolean();
{
bool containsList = binStream.ReadBoolean();
if (containsList)
{
int numElements = binStream.ReadInt32();
MethodsIds = new List<int>(numElements);
while (numElements-- > 0)
{
int id = binStream.ReadInt32();
MethodsIds.Add(id);
}
}
}
binStream.Read(out this._fk_Module);
this._Name = binStream.ReadString();
Properties_was_eagerLoaded = binStream.ReadBoolean();
{
bool containsList = binStream.ReadBoolean();
if (containsList)
{
int numElements = binStream.ReadInt32();
PropertiesIds = new List<int>(numElements);
while (numElements-- > 0)
{
int id = binStream.ReadInt32();
PropertiesIds.Add(id);
}
}
}
binStream.Read(out this._fk_RequestedKind);
this._isShowIconInListsSet = binStream.ReadBoolean();
if (this._isShowIconInListsSet) {
this._ShowIconInLists = binStream.ReadBoolean();
}
this._isShowIdInListsSet = binStream.ReadBoolean();
if (this._isShowIdInListsSet) {
this._ShowIdInLists = binStream.ReadBoolean();
}
this._isShowNameInListsSet = binStream.ReadBoolean();
if (this._isShowNameInListsSet) {
this._ShowNameInLists = binStream.ReadBoolean();
}
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例14: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
this._CategoryTags = binStream.ReadString();
this._fk_ChangedBy = binStream.ReadNullableInt32();
this._isChangedOnSet = binStream.ReadBoolean();
if (this._isChangedOnSet) {
this._ChangedOn = binStream.ReadDateTime();
}
this._CodeTemplate = binStream.ReadString();
this._fk_CreatedBy = binStream.ReadNullableInt32();
this._isCreatedOnSet = binStream.ReadBoolean();
if (this._isCreatedOnSet) {
this._CreatedOn = binStream.ReadDateTime();
}
this._Description = binStream.ReadString();
this._isExportGuidSet = binStream.ReadBoolean();
if (this._isExportGuidSet) {
this._ExportGuid = binStream.ReadGuid();
}
this._HelpText = binStream.ReadString();
this._fk_Icon = binStream.ReadNullableInt32();
this._InvokeOnServer = binStream.ReadNullableBoolean();
this._IsDisplayable = binStream.ReadBoolean();
this._Label = binStream.ReadString();
this._fk_Module = binStream.ReadNullableInt32();
this._Name = binStream.ReadString();
this._fk_ObjectClass = binStream.ReadNullableInt32();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}
示例15: FromStream
public override IEnumerable<IPersistenceObject> FromStream(Zetbox.API.ZetboxStreamReader binStream)
{
var baseResult = base.FromStream(binStream);
var result = new List<IPersistenceObject>();
// it may be only an empty shell to stand-in for unreadable data
if (CurrentAccessRights != Zetbox.API.AccessRights.None) {
this.Proxy.BoolValue = binStream.ReadBoolean();
} // if (CurrentAccessRights != Zetbox.API.AccessRights.None)
return baseResult == null
? result.Count == 0
? null
: result
: baseResult.Concat(result);
}