Org.Apache.Http.Params.IHttpParams: Method Members

The methods of Org.Apache.Http.Params.IHttpParams are listed below. For a list of all members, see the IHttpParams Members list.

Public Methods

Copy() : IHttpParams
Creates a copy of these parameters.
GetBooleanParameter(string, bool) : bool
Returns a Java.Lang.Boolean parameter value with the given name.
GetDoubleParameter(string, double) : double
Returns a Java.Lang.Double parameter value with the given name.
GetIntParameter(string, int) : int
Returns an Java.Lang.Integer parameter value with the given name.
GetLongParameter(string, long) : long
Returns a Java.Lang.Long parameter value with the given name.
GetParameter(string) : Java.Lang.Object
Obtains the value of the given parameter.
IsParameterFalse(string) : bool
Checks if a boolean parameter is not set or false.
IsParameterTrue(string) : bool
Checks if a boolean parameter is set to true.
RemoveParameter(string) : bool
Removes the parameter with the specified name.
SetBooleanParameter(string, bool) : IHttpParams
Assigns a Java.Lang.Boolean to the parameter with the given name
SetDoubleParameter(string, double) : IHttpParams
Assigns a Java.Lang.Double to the parameter with the given name
SetIntParameter(string, int) : IHttpParams
Assigns an Java.Lang.Integer to the parameter with the given name
SetLongParameter(string, long) : IHttpParams
Assigns a Java.Lang.Long to the parameter with the given name
SetParameter(string, Java.Lang.Object) : IHttpParams
Assigns the value to the parameter with the given name.