ChildContextualCreatorCreateTScope, TParent, TChildContext Method |
Namespace: AccessFlowAssembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntaxpublic static IChildContextualCreator<TScope, TChildContext> Create<TScope, TParent, TChildContext>(
IAccessContextual<TScope, TParent, TChildContext> parent
)
Public Shared Function Create(Of TScope, TParent, TChildContext) (
parent As IAccessContextual(Of TScope, TParent, TChildContext)
) As IChildContextualCreator(Of TScope, TChildContext)
public:
generic<typename TScope, typename TParent, typename TChildContext>
static IChildContextualCreator<TScope, TChildContext>^ Create(
IAccessContextual<TScope, TParent, TChildContext>^ parent
)
static member Create :
parent : IAccessContextual<'TScope, 'TParent, 'TChildContext> -> IChildContextualCreator<'TScope, 'TChildContext>
Parameters
- parent
- Type: AccessFlowIAccessContextualTScope, TParent, TChildContext
The access contextual being wrapped.
Type Parameters
- TScope
- The type of the access scopes.
- TParent
-
The type of the access contextual
when it is used as parent for the creation of a child contextual.
- TChildContext
-
The type of the child contextuals.
Return Value
Type:
IChildContextualCreatorTScope,
TChildContext
The newly created
IChildContextualCreatorTScope, TChild
wrapping
parent.
See Also