public VariableTypeMemberContents(IVariableTypeMemberSpecifications specifications, IProperty <TypeInfo> type,
                                   ISerializer runtime, Content.IContents contents)
 {
     _specifications = specifications;
     _type           = type;
     _runtime        = runtime;
     _contents       = contents;
 }
 public VariableTypeMemberContents(ISerializer runtime, Content.IContents contents)
     : this(VariableTypeMemberSpecifications.Default, ExplicitTypeProperty.Default, runtime, contents)
 {
 }
 public DefaultMemberContents(Content.IContents contents) => _contents = contents;