Castle.ManagementExtensions.ManagedObjectName.this C# (CSharp) Method

this() public method

public this ( String key ) : String
key String
return String
		public String this[ String key ]
		{
			get
			{
				if (key == null)
				{
					throw new ArgumentNullException("key");
				}

				return (String) this.properties[key];
			}
		}