FileMetadata 1.0 control documentation

Opens a stream for reading or writing value of Metadata.

[Visual Basic]
Overloads Public Function OpenStream( _
   ByVal mode As FileMode, _
   ByVal access As FileAccess _
) As FileStream
[C#]
public FileStream OpenStream(
   FileMode mode,
   FileAccess access
);

Parameters

mode
A FileMode constant that determines how to open or create the value.
access
A FileAccess constant that determines how the value can be accessed by the FileStream object.

Return Value

An open FileStream that can be used to read or write the contents of the Metadata.

Remarks

After calling the OpenStream method, you must use the FileStream.Close() method to close the FileStream object and free associated system resources.

See Also

MetadataItem Class | ElementIT.FileMetadata Namespace | MetadataItem.OpenStream Overload List