We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, when using DateTimeOffset as type an error is thrown indicating that the type is not supported.
DateTimeOffset
.NET type DateTimeOffset cannot be resolved into XML schema type
Instead something similar to here should be constructed.
<xs:schema targetNamespace="http://schemas.datacontract.org/2004/07/System"> <xs:complexType name="DateTimeOffset"> <xs:sequence minOccurs="1" maxOccurs="1"> <xs:element name="DateTime" type="xs:dateTime" minOccurs="1" maxOccurs="1" /> <xs:elementname="OffsetMinutes" type="xs:short" minOccurs="1" maxOccurs="1" /> </xs:sequence> </xs:complexType> </xs:schema>
The text was updated successfully, but these errors were encountered:
Support DateTimeOffset in wsdl generation DigDes#62 (WCF)
ca438a5
WSDL generation is failing for me when a parameter or property is Nullable of DateTimeOffset
Sorry, something went wrong.
No branches or pull requests
Currently, when using
DateTimeOffset
as type an error is thrown indicating that the type is not supported.Instead something similar to here should be constructed.
The text was updated successfully, but these errors were encountered: