System.Net.WebHeaderCollection.WebHeaderCollection.GetValues C# (CSharp) Метод

GetValues() публичный Метод

public GetValues ( int index ) : string[]
index int
Результат 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[]