/// <summary> /// Sets the untyped <see cref="XmlData"/> value /// of the specified metadata attribute. /// </summary> /// <param name="uri">The namespace within which the name resides. An empty string refers to the default namespace.</param> /// <param name="name">The name of the metadata attribute to add.</param> /// <param name="value">The untyped metadata value.</param> /// <remarks> /// A metadata attribute is a name-value pair, which is stored with the document, but not /// as part of the document content. /// <para>The value of a metadata attribute may be typed or untyped.</para> /// </remarks> /// <seealso cref="XmlData"/> public void SetMetadata(string uri, string name, XmlData value) { }
/// <summary> /// Initializes a new instance of the XmlValue class using the specified <see cref="XmlData"/> and data type. /// </summary> /// <param name="valueType">The specific value type to initialize with.</param> /// <param name="data">The <see cref="XmlData"/> representation /// of the value type.</param> public XmlValue(XmlValueType valueType, XmlData data) { }
/// <summary> /// Sets the document's content to the /// provided <see cref="XmlData"/> content. /// </summary> /// <param name="content">The content for the <see cref="XmlDocument"/>.</param> /// <remarks> /// If this document is a new document (that is, its name is currently not in use by another /// document in the container), you can add it to a container /// using <see cref="Container.PutDocument(string,UpdateContext)"/>. If you are /// updating an already existing document, you can update the document in the container /// using <see cref="Container.UpdateDocument(Figaro.XmlDocument,Figaro.UpdateContext)"/>. /// </remarks> /// <seealso cref="XmlData"/> /// <seealso cref="Container.PutDocument(string,UpdateContext)"/> /// <seealso cref="Container.UpdateDocument(Figaro.XmlDocument,Figaro.UpdateContext)"/> /// <seealso cref="XmlDocument"/> public void SetContent(XmlData content) { }