Returns an array of byte arrays for of the fields that have the name specified
as the method parameter. This method returns an empty
array when there are no matching fields. It never
returns null.
Namespace: Lucene.Net.DocumentsAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public byte[][] GetBinaryValues( string name ) |
Visual Basic |
---|
Public Function GetBinaryValues ( _ name As String _ ) As Byte()() |
Visual C++ |
---|
public: array<array<unsigned char>^>^ GetBinaryValues( String^ name ) |
Parameters
- name
- Type: System..::..String
the name of the field
Return Value
aCopyC#
byte[][]