IOpcFactory interface (msopc.h)
Creates Packaging API objects and provides support for saving and loading packages. Objects that are created by IOpcFactory interface methods provide support for creating, populating, modifying, and digitally signing packages.
Inheritance
The IOpcFactory interface inherits from the IUnknown interface. IOpcFactory also has these types of members:
Methods
The IOpcFactory interface has these methods.
IOpcFactory::CreateDigitalSignatureManager Creates a digital signature manager object for a package object. |
IOpcFactory::CreatePackage Creates a package object that represents an empty package. |
IOpcFactory::CreatePackageRootUri Creates an OPC URI object that represents the root of a package. |
IOpcFactory::CreatePartUri Creates a part URI object that represents a part name. |
IOpcFactory::CreateStreamOnFile Creates a stream over a file. |
IOpcFactory::ReadPackageFromStream Deserializes package data from a stream and creates a package object to represent the package being read. |
IOpcFactory::WritePackageToStream Serializes a package that is represented by a package object. |
Remarks
Do not use a stream to serialize package data when the same stream is being used to deserialize a package; attempting to do so may result in undefined behavior.
To use the Packaging API, the package must map to a ZIP archive as specified in the ECMA-376 OpenXML, 1st Edition, Part 2: Open Packaging Conventions (OPC).
To create a factory that implements the IOpcFactory interface, call the CoCreateInstance function. This factory is not tied to any particular package or Packaging API object, and it can be used for the lifetime of the application. For example code that shows how to create a factory implementing IOpcFactory, see the Getting Started with the Packaging API.
IOpcFactory Support on Previous Versions of Windows
If an application attempts to an unsupported IOpcFactory method, the E_NOTIMPL error code will be returned. For more information, see Getting Started with the Packaging API, and Platform Update for Windows Vista.Thread Safety
Packaging objects are not thread-safe.
For more information, see the Getting Started with the Packaging API.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 7, Windows Vista with SP2 and Platform Update for Windows Vista [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2008 R2, Windows Server 2008 with SP2 and Platform Update for Windows Server 2008 [desktop apps | UWP apps] |
Target Platform | Windows |
Header | msopc.h |
See also
External Resources
Getting Started with the Packaging API
Overviews
Packaging API Programming Guide
Packaging Digital Signature Interfaces
Platform Update for Windows Vista
Reference