Microsoft.VisualStudio.Project.BuildableProjectConfig.QueryStartBuild C# (CSharp) Method

QueryStartBuild() public method

public QueryStartBuild ( uint options, int supported, int ready ) : int
options uint
supported int
ready int
return int
        public virtual int QueryStartBuild(uint options, int[] supported, int[] ready)
        {
            CCITracing.TraceCall();
            if (supported != null && supported.Length > 0)
                supported[0] = 1;
            if (ready != null && ready.Length > 0)
                ready[0] = (IsInProgress()) ? 0 : 1;
            return VSConstants.S_OK;
        }