http://www.webdav.org/specs/rfc4918.html#ELEMENT_propstat See multistatusWriter for the "D:" namespace prefix.
| 242 | // http://www.webdav.org/specs/rfc4918.html#ELEMENT_propstat |
| 243 | // See multistatusWriter for the "D:" namespace prefix. |
| 244 | type propstat struct { |
| 245 | Prop []Property `xml:"D:prop>_ignored_"` |
| 246 | Status string `xml:"D:status"` |
| 247 | Error *xmlError `xml:"D:error"` |
| 248 | ResponseDescription string `xml:"D:responsedescription,omitempty"` |
| 249 | } |
| 250 | |
| 251 | // ixmlPropstat is the same as the propstat type except it holds an ixml.Name |
| 252 | // instead of an xml.Name. |
nothing calls this directly
no outgoing calls
no test coverage detected