System.ServiceModel.Configuration.StandardEndpointsSection.this C# (CSharp) Méthode

this() public méthode

public this ( string name ) : EndpointCollectionElement
name string
Résultat EndpointCollectionElement
		public new EndpointCollectionElement this [string name] {
			get {
				object element = base [name];
				if (element is EndpointCollectionElement)
					return (EndpointCollectionElement) element;
				throw new ArgumentException (String.Format ("Could not find {0}", name));
			}
		}
StandardEndpointsSection