projects/wms-framework/src/lib/wcfserviceinvocationsupport/WcfBindingElement.ts
Services Binding Element
Properties |
|
Methods |
|
Public SendTimeout |
Type : number
|
Default value : 0
|
Message namespace |
Public Abstract BuildChannelFactory | ||||||||||||
BuildChannelFactory(TChannelParam: Function, context: WcfBindingContext)
|
||||||||||||
Type parameters :
|
||||||||||||
Creates a new Header
Parameters :
Returns :
WcfChannelFactoryBase<TChannel>
The channel factory |
import { WcfBindingContext } from './WcfBindingContext';
import { WcfChannelFactoryBase } from './WcfChannelFactoryBase';
/**
* Services Binding Element
*
* @export
* @class WcfBindingElement
* @wType System.ServiceModel.Channels.BindingElement
*/
export abstract class WcfBindingElement {
/**
* Message namespace
*
* @memberof WcfBindingElement
* @wIgnore
*/
public SendTimeout: number = 0;
/**
* Creates a new Header
*
* @param {Function} TChannelParam
* @param {WcfBindingContext} context The binding context
* @returns {WcfChannelFactoryBase} The channel factory
* @memberof WcfBindingElement
*/
public abstract BuildChannelFactory<TChannel>(
TChannelParam: Function,
context: WcfBindingContext
): WcfChannelFactoryBase<TChannel>;
}