1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Syndication
{
using System.Collections.Generic;
using System.Xml;
using System.Collections.ObjectModel;
using System.Xml.Serialization;
using System.Runtime.Serialization;
using System.Runtime.CompilerServices;
// NOTE: This class implements Clone so if you add any members, please update the copy ctor
[TypeForwardedFrom("System.ServiceModel.Web, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
public class SyndicationLink : IExtensibleSyndicationObject
{
Uri baseUri;
ExtensibleSyndicationObject extensions = new ExtensibleSyndicationObject();
long length;
string mediaType;
string relationshipType;
string title;
Uri uri;
public SyndicationLink(Uri uri)
: this(uri, null, null, null, 0)
{
}
public SyndicationLink(Uri uri, string relationshipType, string title, string mediaType, long length)
{
if (length < 0)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("length"));
}
this.baseUri = null;
this.uri = uri;
this.title = title;
this.relationshipType = relationshipType;
this.mediaType = mediaType;
this.length = length;
}
public SyndicationLink()
: this(null, null, null, null, 0)
{
}
protected SyndicationLink(SyndicationLink source)
{
if (source == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("source");
}
this.length = source.length;
this.mediaType = source.mediaType;
this.relationshipType = source.relationshipType;
this.title = source.title;
this.baseUri = source.baseUri;
this.uri = source.uri;
this.extensions = source.extensions.Clone();
}
public Dictionary<XmlQualifiedName, string> AttributeExtensions
{
get { return this.extensions.AttributeExtensions; }
}
public Uri BaseUri
{
get { return this.baseUri; }
set { this.baseUri = value; }
}
public SyndicationElementExtensionCollection ElementExtensions
{
get { return this.extensions.ElementExtensions; }
}
public long Length
{
get { return this.length; }
set
{
if (value < 0)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value"));
}
this.length = value;
}
}
public string MediaType
{
get { return mediaType; }
set { mediaType = value; }
}
public string RelationshipType
{
get { return relationshipType; }
set { relationshipType = value; }
}
public string Title
{
get { return title; }
set { title = value; }
}
public Uri Uri
{
get { return uri; }
set { this.uri = value; }
}
public static SyndicationLink CreateAlternateLink(Uri uri)
{
return CreateAlternateLink(uri, null);
}
public static SyndicationLink CreateAlternateLink(Uri uri, string mediaType)
{
return new SyndicationLink(uri, Atom10Constants.AlternateTag, null, mediaType, 0);
}
public static SyndicationLink CreateMediaEnclosureLink(Uri uri, string mediaType, long length)
{
return new SyndicationLink(uri, Rss20Constants.EnclosureTag, null, mediaType, length);
}
public static SyndicationLink CreateSelfLink(Uri uri)
{
return CreateSelfLink(uri, null);
}
public static SyndicationLink CreateSelfLink(Uri uri, string mediaType)
{
return new SyndicationLink(uri, Atom10Constants.SelfTag, null, mediaType, 0);
}
public virtual SyndicationLink Clone()
{
return new SyndicationLink(this);
}
public Uri GetAbsoluteUri()
{
if (this.uri != null)
{
if (this.uri.IsAbsoluteUri)
{
return this.uri;
}
else if (this.baseUri != null)
{
return new Uri(this.baseUri, this.uri);
}
else
{
return null;
}
}
else
{
return null;
}
}
protected internal virtual bool TryParseAttribute(string name, string ns, string value, string version)
{
return false;
}
protected internal virtual bool TryParseElement(XmlReader reader, string version)
{
return false;
}
protected internal virtual void WriteAttributeExtensions(XmlWriter writer, string version)
{
this.extensions.WriteAttributeExtensions(writer);
}
protected internal virtual void WriteElementExtensions(XmlWriter writer, string version)
{
this.extensions.WriteElementExtensions(writer);
}
internal void LoadElementExtensions(XmlReader readerOverUnparsedExtensions, int maxExtensionSize)
{
this.extensions.LoadElementExtensions(readerOverUnparsedExtensions, maxExtensionSize);
}
internal void LoadElementExtensions(XmlBuffer buffer)
{
this.extensions.LoadElementExtensions(buffer);
}
}
}
|