BasicClientCookie Class

Definition

Represents a mutable client-side HTTP cookie with standard attributes.

[Android.Runtime.Register("org/apache/http/impl/cookie/BasicClientCookie", DoNotGenerateAcw=true)]
public class BasicClientCookie : Java.Lang.Object, IDisposable, Java.Lang.ICloneable, Org.Apache.Http.Cookies.IClientCookie, Org.Apache.Http.Cookies.ISetCookie
[<Android.Runtime.Register("org/apache/http/impl/cookie/BasicClientCookie", DoNotGenerateAcw=true)>]
type BasicClientCookie = class
    inherit Object
    interface ICloneable
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
    interface IClientCookie
    interface ICookie
    interface ISetCookie
Inheritance
BasicClientCookie
Derived
Attributes
Implements

Remarks

Android platform documentation

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Constructors

Name Description
BasicClientCookie(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for an existing Java cookie implementation.

BasicClientCookie(String, String)

Initializes a new instance of the BasicClientCookie class.

Properties

Name Description
Class

Returns the runtime class of this Object.

(Inherited from Object)
Comment

Gets or sets the optional human-readable comment for this cookie.

CommentURL

Gets the optional URL containing additional cookie information.

Domain

Gets or sets the domain to which this cookie is scoped.

ExpiryDate

Gets or sets the absolute date after which this cookie expires.

Handle

The handle to the underlying Android instance.

(Inherited from Object)
IsPersistent

Determines whether this cookie has an expiry date and can persist beyond the current session.

IsSecure

Determines whether this cookie is restricted to secure connections.

JniIdentityHashCode

Gets the identity hash code assigned to this Java peer by the interop runtime.

(Inherited from Object)
JniManagedPeerState (Inherited from JavaObject)
JniPeerMembers

Gets the JNI metadata and member bindings for this Java peer type.

Name

Gets the immutable name of this cookie.

Path

Gets or sets the request-path scope for this cookie.

PeerReference

Gets the JNI object reference for this Java peer.

(Inherited from Object)
ThresholdClass

Gets the Java class reference used for threshold dispatch by this managed peer.

ThresholdType

Gets the managed type used to decide whether JNI calls dispatch through the threshold class.

Value

Gets or sets the value carried by this cookie.

Version

Gets or sets the cookie specification version.

Methods

Name Description
Clone()

Creates a copy of this cookie, including its current attributes.

Construct(JniObjectReference, JniObjectReferenceOptions) (Inherited from JavaObject)
ContainsAttribute(String)

Determines whether the specified attribute maps to a non-null value.

Dispose()

Releases the resources held by this Java peer.

(Inherited from Object)
Dispose(Boolean)

Releases the resources held by this Java peer.

(Inherited from Object)
DisposeUnlessReferenced() (Inherited from JavaObject)
Equals(Object) (Inherited from JavaObject)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
GetAttribute(String)

Gets the value associated with a named cookie attribute.

GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
GetPorts()

Gets the port restrictions defined for this cookie.

IsExpired(Date)

Determines whether this cookie has expired at the supplied date.

JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
SetAttribute(String, String)

Adds or replaces a named cookie attribute value.

SetComment(String)

Sets the optional human-readable comment for this cookie.

SetDomain(String)

Sets the domain to which this cookie is scoped.

SetExpiryDate(Date)

Sets the cookie's expiry date.

SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
SetPath(String)

Sets the request-path scope for this cookie.

SetPeerReference(JniObjectReference, JniObjectReferenceOptions) (Inherited from JavaObject)
SetSecure(Boolean)

Sets whether this cookie is restricted to secure connections.

SetValue(String)

Sets the value carried by this cookie.

SetVersion(Int32)

Sets the cookie specification version.

ToArray<T>()

Creates a managed array from this Java array wrapper.

(Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime()

Unregisters this Java peer from the interop runtime.

(Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)

Explicit Interface Implementations

Name Description
IJavaPeerable.Disposed() (Inherited from JavaObject)
IJavaPeerable.Finalized() (Inherited from JavaObject)
IJavaPeerable.JniObjectReferenceControlBlock (Inherited from JavaObject)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from JavaObject)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from JavaObject)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from JavaObject)
IJavaPeerable.UnregisterFromRuntime()

Unregisters this Java peer from the interop runtime.

Extension Methods

Name Description
GetJniTypeName(IJavaPeerable)

Gets the JNI name of the type of the instance self.

JavaAs<TResult>(IJavaPeerable)

Try to coerce self to type TResult, checking that the coercion is valid on the Java side.

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
TryJavaCast<TResult>(IJavaPeerable, TResult)

Try to coerce self to type TResult, checking that the coercion is valid on the Java side.

Applies to