|
Options |
Name |
Purpose |
|
|
OpenEdge.Net.HTTP.Filter.Writer.MessageWriterBuilder Build (character, BuilderRegistry)
|
/** Returns an entity writer for a content type
@param character The content type being processed.
@param BuilderRegistry The registry that contains the mappings between content types and writers
@return MessageWriterBuilder The entity writer to use */
|
|
|
OpenEdge.Net.HTTP.Filter.Writer.MessageWriterBuilder Build (IHttpMessage, BuilderRegistry)
|
/** Returns an entity writer for a message
@param IHttpMessage The message being processed
@param BuilderRegistry The registry that contains the mappings between content types and writers
@return MessageWriterBuilder The entity writer builder to use */
|
|
|
Progress.Lang.Class GetWriter (character)
|
/** Returns a content type writer.
The search alogrithm is
1. Exact match - type / sub-type
2. Vendor types - type / vendor-prefix-removed-sub-type
Suffixes - type / suffix
3. General type - type / *
4. Fallback to HTTP default - application/octet-stream
@param character The name of the content type to register
@return logical True if the content type was previously registered */
|
|
|
OpenEdge.Net.HTTP.Filter.Writer.MessageWriterBuilder Option (character, character)
|
/** Adds or overwrites an option for the client library.
@param character The name of the option
@param character The value of the option (can be anything)
@return MessageWriterBuilder This builder object. */
|
|
|
OpenEdge.Net.HTTP.Filter.Writer.MessageWriterBuilder Option (character, decimal)
|
/** Adds or overwrites an option for the client library.
@param character The name of the option
@param decimal The value of the option (can be anything)
@return MessageWriterBuilder This builder object. */
|
|
|
OpenEdge.Net.HTTP.Filter.Writer.MessageWriterBuilder Option (character, int64)
|
/** Adds or overwrites an option for the client library.
@param character The name of the option
@param int64 The value of the option (can be anything)
@return MessageWriterBuilder This builder object. */
|
|
|
OpenEdge.Net.HTTP.Filter.Writer.MessageWriterBuilder Option (character, logical)
|
/** Adds or overwrites an option for the client library.
@param character The name of the option
@param logical The value of the option (can be anything)
@return MessageWriterBuilder This builder object. */
|
|
|
OpenEdge.Net.HTTP.Filter.Writer.MessageWriterBuilder Option (character, Object)
|
/** Adds or overwrites an option for the client library.
@param character The name of the option
@param Object The value of the option (can be anything)
@return MessageWriterBuilder This builder object. */
|
|
|
OpenEdge.Net.HTTP.Filter.Writer.MessageWriterBuilder WriteTo (Object)
|
/** Specifies the Entity object to use for the message body
@param ByteBucket The bucket to use
@return MessageWriterBuilder The writer used */
|