System.Data.Services.ETagAttribute.ETagAttribute C# (CSharp) Method

ETagAttribute() public method

public ETagAttribute ( string propertyName ) : System.Collections.ObjectModel
propertyName string
return System.Collections.ObjectModel
		public ETagAttribute (string propertyName)
		{
			if (propertyName == null)
				throw new ArgumentNullException ("propertyName");

			this.properties = new ReadOnlyCollection<string> (new[] { propertyName });
		}

Same methods

ETagAttribute::ETagAttribute ( ) : System.Collections.ObjectModel
ETagAttribute