Esempio n. 1
0
		/// <summary>
		/// Copies the entire <see cref="AtomLinkCollection"/> to a compatible one-dimensional <see cref="Array"/>,
		/// starting at the specified index of the target array.
		/// </summary>
		/// <param name="array">The one-dimensional <see cref="Array"/> that is the destination of the elements copied
		/// from <see cref="AtomLinkCollection"/>. The <see cref="Array"/> must have zero-based indexing. </param>
		/// <param name="index">The zero-based index in <i>array</i> at which copying begins.</param>
		public void CopyTo(AtomLinkCollection[] array, int index)
		{
			this.List.CopyTo(array, index);
		}
Esempio n. 2
0
		public void Init()
		{
			links = new AtomLinkCollection();
            fistLink = new AtomLink(new Uri("http://purl.org/atom/ns#"));
            secondLink = new AtomLink(new Uri("http://purl.org/atom/ns#"));
		}
Esempio n. 3
0
		public void Init()
		{
			links = new AtomLinkCollection();
			fistLink = new AtomLink();
			secondLink = new AtomLink();
		}