Atomized(TKey, TValue) Method (TKey, Func(TValue))
[This content is no longer valid. For the latest information on "M", "Quadrant", SQL Server Modeling Services, and the Repository, see the Model Citizen blog.]
Namespace: System.Dataflow
Assembly: System.Dataflow (in System.Dataflow.dll)
Syntax
'Declaration
PublicSharedFunctionAtomized(Of TKey, TValue) ( _
keyAs TKey, _
createAsFunc(Of TValue) _
) As TValue
'Usage
DimkeyAs TKey
DimcreateAsFunc(Of TValue)
DimreturnValueAs TValue
returnValue = IdentityAtomizer.Atomized(key, _
create)
publicstatic TValue Atomized<TKey, TValue>(
TKey key,
Func<TValue> create
)
public:
generic<typename TKey, typename TValue>
static TValue Atomized(
TKey key,
Func<TValue>^ create
)
JScript does not support generic types or methods.
Type Parameters
- TKey
- TValue
Parameters
- key
Type: TKey
- create
Type: System. . :: . .Func< (Of < ( <'TValue> ) > ) >
Return Value
Type: TValue
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see https://msdn.microsoft.com/en-us/library/8skskf63(v=vs.85).