Metadata Constructor (String) |
Initializes a new instance of the
Metadata class.
Namespace: GroupDocs.MetadataAssembly: GroupDocs.Metadata (in GroupDocs.Metadata.dll) Version: 21.8
Syntaxpublic Metadata(
string filePath
)
Public Sub New (
filePath As String
)
public:
Metadata(
String^ filePath
)
new :
filePath : string -> Metadata
Parameters
- filePath
- Type: SystemString
A string that contains the full name of the file from which to create a Metadata instance.
Remarks
Examples
This example demonstrates how to load a file from a local disk.
using (Metadata metadata = new Metadata(Constants.InputOne))
{
}
See Also