System.Net.WebHeaderCollection.WebHeaderCollection.GetValues C# (CSharp) Method

GetValues() public method

public GetValues ( int index ) : string[]
index int
return string[]
		public override string[] GetValues (int index)
		{
			string[] values = base.GetValues (index);
			if (values == null || values.Length == 0) {
				return(null);
			}
			
			return(values);
		}

Same methods

WebHeaderCollection.WebHeaderCollection::GetValues ( string header ) : string[]