2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.OLE
|
2025-09-26 11:57:18 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The IndirectPropertyName packet represents the name of a stream or storage as used in the
|
|
|
|
|
/// representation of the following property types in a non-simple property set: VT_STREAM (0x0042),
|
|
|
|
|
/// VT_STORAGE (0x0043), VT_STREAMED_OBJECT (0x0044), VT_STORED_OBJECT (0x0044), and
|
|
|
|
|
/// VT_VERSIONED_STREAM (0x0049). It MUST be represented as a CodePageString, and its value MUST
|
|
|
|
|
/// be derived from the property identifier of the property represented according to the following
|
2026-05-12 20:33:53 -04:00
|
|
|
/// Augmented Backus-Naur Form (ABNF) [RFC4234] syntax.
|
2025-09-26 11:57:18 -04:00
|
|
|
///
|
|
|
|
|
/// Indirectproperty = "prop" propertyIdentifier
|
2025-10-30 22:52:56 -04:00
|
|
|
///
|
2025-09-26 11:57:18 -04:00
|
|
|
/// Where PropertyIdentifier is the decimal string representation of the property identifier. This property
|
|
|
|
|
/// identifier MUST be a valid PropertyIdentifier value and MUST NOT be the property identifier for any of
|
|
|
|
|
/// the special properties specified in section 2.18.
|
|
|
|
|
/// </summary>
|
2025-10-30 22:52:56 -04:00
|
|
|
/// <see href="https://winprotocoldoc.z19.web.core.windows.net/MS-OLEPS/%5bMS-OLEPS%5d.pdf"/>
|
2025-09-26 11:57:18 -04:00
|
|
|
public class IndirectPropertyName : CodePageString { }
|
|
|
|
|
}
|