EndpointReference.cs 811 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.ObjectModel;
  3. using System.Xml;
  4. namespace System.IdentityModel.Protocols.WSTrust
  5. {
  6. public class EndpointReference
  7. {
  8. private Collection<XmlElement> details = new Collection<XmlElement> ();
  9. private Uri uri = null;
  10. public Collection<XmlElement> Details { get { return details; } }
  11. public Uri Uri { get { return uri; } }
  12. public EndpointReference (string uri) {
  13. this.uri = new Uri (uri);
  14. }
  15. [MonoTODO]
  16. public static EndpointReference ReadFrom (XmlDictionaryReader reader) {
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public static EndpointReference ReadFrom(Xml.XmlReader reader) {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public void WriteTo (XmlWriter writer) {
  25. throw new NotImplementedException ();
  26. }
  27. }
  28. }