C# Class NServiceBus.Config.RijndaelExpiredKeyCollection

A configuration element collection of RijndaelExpiredKeys.
Inheritance: System.Configuration.ConfigurationElementCollection
Show file Open project: Particular/NServiceBus

Public Methods

Method Description
Add ( NServiceBus.Config.RijndaelExpiredKey mapping ) : void

Calls BaseAdd.

Clear ( ) : void

Calls BaseClear.

IndexOf ( NServiceBus.Config.RijndaelExpiredKey encryptionKey ) : int

Calls BaseIndexOf on the given RijndaelExpiredKey.

IsReadOnly ( ) : bool

True if the collection is readonly.

Remove ( NServiceBus.Config.RijndaelExpiredKey mapping ) : void

If the key exists, calls BaseRemove on it.

Remove ( string name ) : void

Calls BaseRemove.

RemoveAt ( int index ) : void

Calls BaseRemoveAt.

this ( int index ) : NServiceBus.Config.RijndaelExpiredKey

Gets/sets the RijndaelExpiredKey at the given index.

this ( string key ) : NServiceBus.Config.RijndaelExpiredKey

Gets the RijndaelExpiredKey for the given key.

Protected Methods

Method Description
BaseAdd ( ConfigurationElement element ) : void

Calls BaseAdd with true as the additional parameter.

CreateNewElement ( ) : ConfigurationElement

Creates a new RijndaelExpiredKey.

CreateNewElement ( string elementName ) : ConfigurationElement

Creates a new RijndaelExpiredKey, setting its RijndaelExpiredKey.Key property to the given value.

GetElementKey ( ConfigurationElement element ) : object

Returns the Messages property of the given RijndaelExpiredKey element.

Method Details

Add() public method

Calls BaseAdd.
public Add ( NServiceBus.Config.RijndaelExpiredKey mapping ) : void
mapping NServiceBus.Config.RijndaelExpiredKey
return void

BaseAdd() protected method

Calls BaseAdd with true as the additional parameter.
protected BaseAdd ( ConfigurationElement element ) : void
element System.Configuration.ConfigurationElement
return void

Clear() public method

Calls BaseClear.
public Clear ( ) : void
return void

CreateNewElement() protected method

Creates a new RijndaelExpiredKey.
protected CreateNewElement ( ) : ConfigurationElement
return System.Configuration.ConfigurationElement

CreateNewElement() protected method

Creates a new RijndaelExpiredKey, setting its RijndaelExpiredKey.Key property to the given value.
protected CreateNewElement ( string elementName ) : ConfigurationElement
elementName string
return System.Configuration.ConfigurationElement

GetElementKey() protected method

Returns the Messages property of the given RijndaelExpiredKey element.
protected GetElementKey ( ConfigurationElement element ) : object
element System.Configuration.ConfigurationElement
return object

IndexOf() public method

Calls BaseIndexOf on the given RijndaelExpiredKey.
public IndexOf ( NServiceBus.Config.RijndaelExpiredKey encryptionKey ) : int
encryptionKey NServiceBus.Config.RijndaelExpiredKey
return int

IsReadOnly() public method

True if the collection is readonly.
public IsReadOnly ( ) : bool
return bool

Remove() public method

If the key exists, calls BaseRemove on it.
public Remove ( NServiceBus.Config.RijndaelExpiredKey mapping ) : void
mapping NServiceBus.Config.RijndaelExpiredKey
return void

Remove() public method

Calls BaseRemove.
public Remove ( string name ) : void
name string
return void

RemoveAt() public method

Calls BaseRemoveAt.
public RemoveAt ( int index ) : void
index int
return void

this() public method

Gets/sets the RijndaelExpiredKey at the given index.
public this ( int index ) : NServiceBus.Config.RijndaelExpiredKey
index int
return NServiceBus.Config.RijndaelExpiredKey

this() public method

Gets the RijndaelExpiredKey for the given key.
public this ( string key ) : NServiceBus.Config.RijndaelExpiredKey
key string
return NServiceBus.Config.RijndaelExpiredKey