BuildXMLElement() static private method

static private BuildXMLElement ( string name, object value ) : string
name string
value object
return string
Beispiel #1
0
 public override string ToXml()
 {
     if (Comments != null)
     {
         return(RequestBuilder.BuildXMLElement("comments", Comments));
     }
     if (DocumentUploadId != null)
     {
         return(RequestBuilder.BuildXMLElement("document-upload-id", DocumentUploadId));
     }
     return("");
 }
Beispiel #2
0
 internal virtual string BuildXMLElement(string name, object value)
 {
     return(RequestBuilder.BuildXMLElement(name, value));
 }