System.Xml.Serialization.XmlSerializationWriter.WriteRpcResult C# (CSharp) Method

WriteRpcResult() protected method

protected WriteRpcResult ( string name, string ns ) : void
name string
ns string
return void
        protected void WriteRpcResult(string name, string ns)
        {
            if (!_soap12) return;
            WriteElementQualifiedName(Soap12.RpcResult, Soap12.RpcNamespace, new XmlQualifiedName(name, ns), null);
        }