BalticAmadeus.FluentMdx.MdxMember.WithFunction C# (CSharp) Method

WithFunction() public method

Appends the specified navigation function and returns the updated current instance of MdxMember.
public WithFunction ( MdxNavigationFunction function ) : MdxMember
function MdxNavigationFunction Specified navigation function.
return MdxMember
        public MdxMember WithFunction(MdxNavigationFunction function)
        {
            _navigationFunctions.Add(function);

            return this;
        }