[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Metadata.UserProp

Class Metadata.UserProp

Namespace
GrapeCity.Documents.Pdf
Assembly
GcDocs.Pdf.dll

Represents a custom metadata property. Note that the only allowed namespaces are:

  • "http://purl.org/dc/elements/1.1/" (Dublin Core Properties)
  • "http://ns.adobe.com/xap/1.0/" (XMP Core Properties)
  • "http://ns.adobe.com/pdf/1.3/" (PDF Properties)
Attempting to add a property with a different namespace will throw an exception.
public class Metadata.UserProp
Inheritance
object
Metadata.UserProp
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

UserProp(string, string, string)

Initializes a new instance of the Metadata.UserProp class.

public UserProp(string @namespace, string name, string value)

Parameters

namespace string

The namespace.

name string

The property name.

value string

The property value.

Properties

Name

Gets the property name.

public string Name { get; }

Property Value

string

Namespace

Gets the property namespace.

public string Namespace { get; }

Property Value

string

Value

Gets the property value.

public string Value { get; }

Property Value

string