I am sending some XML classes over a socket. One message look like this:
<?xml version="1.0"?><LoginClass xmlns:xsd=" xmlns:xsi=" /><UseCompression>false</UseCompression></LoginClass>
Can I specify anything in the class or serialization method to ignore creating:
xmlns:xsd=" xmlns:xsi="
or:
<?xml version="1.0"?>
I would like to send as little information as possible.
thanks!
<?xml version="1.0"?><LoginClass xmlns:xsd=" xmlns:xsi=" /><UseCompression>false</UseCompression></LoginClass>
Can I specify anything in the class or serialization method to ignore creating:
xmlns:xsd=" xmlns:xsi="
or:
<?xml version="1.0"?>
I would like to send as little information as possible.
thanks!