Construct a metadata object.
            
 
    Namespace: 
   MaxMind.Db
    Assembly:
   MaxMind.Db (in MaxMind.Db.dll) Version: 2.6.1
Syntaxpublic Metadata(
	int binaryFormatMajorVersion,
	int binaryFormatMinorVersion,
	ulong buildEpoch,
	string databaseType,
	IDictionary<string, string> description,
	int ipVersion,
	IReadOnlyList<string> languages,
	long nodeCount,
	int recordSize
)
Public Sub New ( 
	binaryFormatMajorVersion As Integer,
	binaryFormatMinorVersion As Integer,
	buildEpoch As ULong,
	databaseType As String,
	description As IDictionary(Of String, String),
	ipVersion As Integer,
	languages As IReadOnlyList(Of String),
	nodeCount As Long,
	recordSize As Integer
)
public:
Metadata(
	int binaryFormatMajorVersion, 
	int binaryFormatMinorVersion, 
	unsigned long long buildEpoch, 
	String^ databaseType, 
	IDictionary<String^, String^>^ description, 
	int ipVersion, 
	IReadOnlyList<String^>^ languages, 
	long long nodeCount, 
	int recordSize
)
new : 
        binaryFormatMajorVersion : int * 
        binaryFormatMinorVersion : int * 
        buildEpoch : uint64 * 
        databaseType : string * 
        description : IDictionary<string, string> * 
        ipVersion : int * 
        languages : IReadOnlyList<string> * 
        nodeCount : int64 * 
        recordSize : int -> MetadataParameters
- binaryFormatMajorVersion
 - Type: SystemInt32
 - binaryFormatMinorVersion
 - Type: SystemInt32
 - buildEpoch
 - Type: SystemUInt64
 - databaseType
 - Type: SystemString
 - description
 - Type: System.Collections.GenericIDictionaryString, String
 - ipVersion
 - Type: SystemInt32
 - languages
 - Type: System.Collections.GenericIReadOnlyListString
 - nodeCount
 - Type: SystemInt64
 - recordSize
 - Type: SystemInt32
 
See Also