BalticAmadeus.FluentMdx.MdxMember.WithFunction C# (CSharp) 메소드

WithFunction() 공개 메소드

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

            return this;
        }