You've already forked linux-packaging-mono
Imported Upstream version 3.10.0
Former-commit-id: 172c8e3c300b39d5785c7a3e8dfb08ebdbc1a99b
This commit is contained in:
@ -23,9 +23,6 @@ namespace MonoTests.System.XmlSerialization
|
||||
{
|
||||
[Test]
|
||||
[NUnit.Framework.Category("NotDotNet")] // FDBK50639
|
||||
#if TARGET_JVM
|
||||
[Ignore ("JVM returns fields in different order")]
|
||||
#endif
|
||||
public void WriteLiteral ()
|
||||
{
|
||||
Test data = BuildTestObject ();
|
||||
|
@ -2303,6 +2303,53 @@ namespace MonoTests.System.XmlSerialization
|
||||
"Novell bug #594490 (https://bugzilla.novell.com/show_bug.cgi?id=594490) not fixed.");
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* The following code was generated from Microsoft's xsd.exe with the /classes switch.
|
||||
* It only includes the relevent details but was based on the following namespaces:
|
||||
* urn:oasis:names:tc:SAML:2.0:protocol
|
||||
* urn:oasis:names:tc:SAML:2.0:assertion
|
||||
* http://www.w3.org/2000/09/xmldsig#
|
||||
* http://www.w3.org/2001/04/xmlenc
|
||||
*/
|
||||
|
||||
[XmlTypeAttribute (Namespace = "urn:oasis:names:tc:SAML:2.0:protocol")]
|
||||
[XmlRootAttribute ("RequestedAuthnContext", Namespace = "urn:oasis:names:tc:SAML:2.0:protocol", IsNullable = false)]
|
||||
public class RequestedAuthnContext
|
||||
{
|
||||
string[] items;
|
||||
ItemsChoice7[] itemsElementName;
|
||||
|
||||
[XmlElementAttribute ("AuthnContextClassRef", typeof (string), Namespace = "urn:oasis:names:tc:SAML:2.0:assertion", DataType = "anyURI")]
|
||||
[XmlElementAttribute ("AuthnContextDeclRef", typeof (string), Namespace = "urn:oasis:names:tc:SAML:2.0:assertion", DataType = "anyURI")]
|
||||
[XmlChoiceIdentifierAttribute ("ItemsElementName")]
|
||||
public string[] Items {
|
||||
get { return this.items; }
|
||||
set { this.items = value; }
|
||||
}
|
||||
|
||||
[XmlElementAttribute ("ItemsElementName")]
|
||||
[XmlIgnoreAttribute ()]
|
||||
public ItemsChoice7[] ItemsElementName {
|
||||
get { return this.itemsElementName; }
|
||||
set { this.itemsElementName = value; }
|
||||
}
|
||||
}
|
||||
|
||||
[XmlTypeAttribute (Namespace = "urn:oasis:names:tc:SAML:2.0:protocol", IncludeInSchema = false)]
|
||||
public enum ItemsChoice7 {
|
||||
[XmlEnumAttribute ("urn:oasis:names:tc:SAML:2.0:assertion:AuthnContextClassRef")]
|
||||
AuthnContextClassRef,
|
||||
[XmlEnumAttribute ("urn:oasis:names:tc:SAML:2.0:assertion:AuthnContextDeclRef")]
|
||||
AuthnContextDeclRef,
|
||||
}
|
||||
// End snippet from xsd.exe
|
||||
|
||||
[Test]
|
||||
public void FullyQualifiedName_XmlEnumAttribute ()
|
||||
{
|
||||
var serializer = new XmlSerializer (typeof (RequestedAuthnContext));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1 +1 @@
|
||||
e9a161c6e3fd422f3153cc489f51483e564a02be
|
||||
6001f7f247689571d9181a9a36a4e1a33efbdf6a
|
Reference in New Issue
Block a user