示例#1
0
 protected SortedVectorTable(FlatBufferDeserializationContext context)
 {
     checked
     {
         this.OnInitialized(context);
     }
 }
示例#2
0
 protected InnerStructB(FlatBufferDeserializationContext context)
 {
     this.Context = context;
 }
示例#3
0
 protected OuterTable(FlatBufferDeserializationContext context)
 {
     this.Context = context;
 }
 /// <summary>
 /// This constructor is used by Flatsharp when it is defined.
 /// The context parameter gives a little information about the deserialization,
 /// but it is not required to do anything with it.
 /// </summary>
 protected User(FlatBufferDeserializationContext context)
 {
 }
 private PrivateContextConstructorStruct(FlatBufferDeserializationContext context)
 {
     this.Context = context;
 }
 protected internal ProtectedInternalContextConstructorStruct(FlatBufferDeserializationContext context)
 {
     this.Context = context;
 }
 protected ProtectedContextConstructorStruct(FlatBufferDeserializationContext context)
 {
     this.Context = context;
 }
 public PublicContextConstructorStruct(FlatBufferDeserializationContext context)
 {
     this.Context = context;
 }
示例#9
0
 protected void OnFlatSharpDeserialized(FlatBufferDeserializationContext context)
 {
     this.OnDeserializedCalled = true;
 }