Public Instance Methods : SstSmtpHeader
at: key
"ACTION
Answer the object associated with @key in the receiver.
@key is treated as case-insensitive.
PARAMETERS
key : <String>
RETURN VALUE
<orderedCollection of <String>>"
Categories
SST-API User
at: key add: value
"ACTION
Answer @value after adding @value to the values
already associated with @key. @key is treated as
case-insensitive.
PARAMETERS
key : <String>
value : <String>
RETURN VALUE
<String>"
Categories
SST-API User
at: key ifAbsent: block
"ACTION
Answer the values associated with @key if one exists,
otherwise execute @block with no arguments. @key is
treated as case-insensitive.
PARAMETERS
key : <String>
block : <Block>
RETURN VALUE
<orderedCollection of <String>> | <Object>"
Categories
SST-API User
at: key ifAbsentPut: block
"ACTION
Answer the values associated with @key if one exists,
otherwise associate the value of evaluating @block with
no arguments. @key is treated as case-insensitive.
PARAMETERS
key : <String>
block : <Block>
RETURN VALUE
<orderedCollection of <String>>"
Categories
SST-API User
at: key ifPresent: block
"ACTION
Answer the result of evaluating @aBlock if @key is in the receiver,
otherwise return nil. @key is treated as case-insensitive. @block
is a one-argument block which will be given the collection of entries
for the field named @key.
PARAMETERS
key : <String>
block : <Block>
RETURN VALUE
nil | <orderedCollection of <String>>"
Categories
SST-API User
at: key put: value
"ACTION
Replace any values associated with @key with @value.
Answer the new values. @key is treated as case-insensitive.
PARAMETERS
key : <String>
value : <String>
RETURN VALUE
<orderedCollection of <String>>"
Categories
SST-API User
[FIRST] [PREV] [NEXT] [LAST]