| PackerUnpackerExtensionsPackDictionaryTKey, TValue Method (Packer, IDictionaryTKey, TValue, SerializationContext) | 
            	Packs specified dictionary with the specified context.
            
 
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
 Syntax
Syntaxpublic static Packer PackDictionary<TKey, TValue>(
	this Packer source,
	IDictionary<TKey, TValue> dictionary,
	SerializationContext context
)
<ExtensionAttribute>
Public Shared Function PackDictionary(Of TKey, TValue) ( 
	source As Packer,
	dictionary As IDictionary(Of TKey, TValue),
	context As SerializationContext
) As Packer
public:
[ExtensionAttribute]
generic<typename TKey, typename TValue>
static Packer^ PackDictionary(
	Packer^ source, 
	IDictionary<TKey, TValue>^ dictionary, 
	SerializationContext^ context
)
[<ExtensionAttribute>]
static member PackDictionary : 
        source : Packer * 
        dictionary : IDictionary<'TKey, 'TValue> * 
        context : SerializationContext -> Packer 
Parameters
- source
- Type: MsgPackPacker
 The Packer.
- dictionary
- Type: System.Collections.GenericIDictionaryTKey, TValue
 The dictionary to be serialized.
- context
- Type: MsgPack.SerializationSerializationContext
 The SerializationContext holds shared serializers.
Type Parameters
- TKey
- The type of keys of the dictionary.
- TValue
- The type of values of the dictionary.
Return Value
Type: 
Packersource.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
Packer. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 Exceptions
Exceptions See Also
See Also