Gets the manifest.xml
document which describes the supported document interfaces, the document properties, the sections and their contents, and section dependencies.
.NET Syntax
virtual MgByteReader DescribeDrawing(MgResourceIdentifier resource);
|
Java Syntax
virtual MgByteReader DescribeDrawing(MgResourceIdentifier resource);
|
PHP Syntax
virtual MgByteReader DescribeDrawing(MgResourceIdentifier resource);
|
- Parameters:
-
resource | (MgResourceIdentifier) Resource identifier specifying the drawing source which has the DWF resource data. |
- Returns:
- Returns an MgByteReader object containing the manifest.xml file.
Example (PHP)
$drawing_ID = new MgResourceIdentifier('Library://DrawingService/Floorplan.DrawingSource');
$byteReader = $drawingService->DescribeDrawing($drawing_ID);
- Exceptions:
-
- Note:
- See MgResourceService for additional exceptions.