Show / Hide Table of Contents

Interface IAssignable<TKey, TValue>

A command-based interface that accepts a key and value, usually to pair the two with a store of some sort.

Namespace: ExtendedXmlSerializer.Core.Sources
Assembly: ExtendedXmlSerializer.dll
Syntax
public interface IAssignable<in TKey, in TValue>
Type Parameters
TKey

The key type.

TValue

The value type.

Methods

Assign(TKey, TValue)

Assigns a value with the associated key.

Declaration
void Assign(TKey key, TValue value)
Parameters
TKey key

The key.

TValue value

The value.

Extension Methods

ExtensionMethods.Return<T, TOut>(T, TOut)
ExtensionMethods.Apply<TKey, TValue>(IAssignable<TKey, TValue>, TKey, TValue)
ExtensionMethods.To<T>(Object)
ExtensionMethods.AsValid<T>(Object, String)
ExtensionMethodsForAttachedProperties.Get<TType, TValue>(TType, Property<TType, TValue>)
ExtensionMethodsForAttachedProperties.Set<TType, TValue>(TType, Property<TType, TValue>, TValue)
ExtensionMethodsForCoreSources.If<TParameter, TResult>(TResult, ISpecification<TParameter>)
ExtensionMethodsForCoreSources.Let<TSpecification, TInstance>(TInstance, ISpecification<TSpecification>, TInstance)
Back to top Generated by DocFX