Show / Hide Table of Contents

    Class ParameterIndexer

    SQL procedure call out parameters indexer

    Inheritance
    Object
    ParameterIndexer
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: XData
    Assembly: XData.docfx.dll
    Syntax
    public sealed class ParameterIndexer

    Constructors

    | Improve this Doc View Source

    ParameterIndexer(IEnumerable<IParameterDescription>)

    Parameter indexer constructor

    Declaration
    public ParameterIndexer(IEnumerable<IParameterDescription> parameters)
    Parameters
    Type Name Description
    IEnumerable<IParameterDescription> parameters

    Parameter sequence

    Properties

    | Improve this Doc View Source

    Count

    Variables count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    Item[String]

    Parameter indexer

    Declaration
    public IParameterDescription this[string name] { get; }
    Parameters
    Type Name Description
    String name

    Parameter name

    Property Value
    Type Description
    IParameterDescription

    Variable

    Methods

    | Improve this Doc View Source

    Add(IParameterDescription)

    Add parameter

    Declaration
    public void Add(IParameterDescription parameter)
    Parameters
    Type Name Description
    IParameterDescription parameter

    Variable

    | Improve this Doc View Source

    Add(ParameterIndexer)

    Add variables to collection

    Declaration
    public void Add(ParameterIndexer variables)
    Parameters
    Type Name Description
    ParameterIndexer variables

    Variable indexer

    | Improve this Doc View Source

    Contains(String)

    Variables contains name

    Declaration
    public bool Contains(string name)
    Parameters
    Type Name Description
    String name

    Variable name

    Returns
    Type Description
    Boolean

    Contains flag

    | Improve this Doc View Source

    GetValue(String)

    Returns parameter value

    Declaration
    public object GetValue(string name)
    Parameters
    Type Name Description
    String name

    Parameter name

    Returns
    Type Description
    Object

    Parameter value

    | Improve this Doc View Source

    GetValue<T>(String)

    Returns parameter value

    Declaration
    public T GetValue<T>(string name)
    Parameters
    Type Name Description
    String name

    Parameter name

    Returns
    Type Description
    T

    Parameter value

    Type Parameters
    Name Description
    T

    Parameter type

    Extension Methods

    SerializationExtensions.ToXml<T>(T)
    CollectionsExtensions.SetValue<TKey, T>(TKey, T)
    CollectionsExtensions.AsEnum<T>(T)
    DataObjectQueryableExtensions.CompareVariable(Object, FilterOperation, String)
    Processing.Do<T>(T, Action<IProcess<T>>[])
    TypeExtensions.TryConvert<T, TResult>(T, Func<T, TResult>)
    TypeExtensions.TryConvert<T, TResult>(T, Func<T, TResult>, TResult)
    TypeExtensions.ChangeType<T>(Object)
    TypeExtensions.ChangeType(Object, Type)
    TypeExtensions.InvokeMethod<TRet>(Object, Type[], Expression<Func<TRet>>, BindingFlags)
    TypeExtensions.InvokeMethod(Object, Type[], Expression<Action>, BindingFlags)
    TypeExtensions.InvokeMethod<TRet>(Object, Expression<Func<TRet>>, BindingFlags)
    TypeExtensions.InvokeMethod(Object, Expression<Action>, BindingFlags)
    SqlBlockExtensions.SetExpression<TTag, TResult>(TTag, Expression<Func<IBlockQueryAdapter, TResult>>)
    QueryDescriptionExtensions.SetExpression<TTag, TResult>(TTag, Expression<Func<IQueryStructureAdapter, TResult>>)
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX