projects/wms-framework/src/lib/wcfserviceinvocationsupport/CookieManagement.ts
Defines the interface used to provide access to an optional instance of System.Net.CookieContainer that can be used to manage a collection of cookies.
Properties |
CookieContainer |
CookieContainer:
|
Type : CookieContainer
|
export class CookieContainer {}
/**
* Defines the interface used to provide access to an optional instance of System.Net.CookieContainer
* that can be used to manage a collection of cookies.
*
* @export
* @interface IHttpCookieContainerManager
* @wInterface System.ServiceModel.Channels.IHttpCookieContainerManager
*/
export interface IHttpCookieContainerManager {
CookieContainer: CookieContainer;
}