Microsoft.Xades.ObjectReference.GetXml C# (CSharp) 메소드

GetXml() 공개 메소드

Returns the XML representation of the this object
public GetXml ( ) : XmlElement
리턴 System.Xml.XmlElement
		public XmlElement GetXml()
		{
			XmlDocument creationXmlDocument;
			XmlElement retVal;

			creationXmlDocument = new XmlDocument();
			retVal = creationXmlDocument.CreateElement("ObjectReference", XadesSignedXml.XadesNamespaceUri);
			retVal.InnerText = this.objectReferenceUri;

			return retVal;
		}
		#endregion