PowerStudio.DebugEngine.DebugModuleBase.IsUserCode C# (CSharp) Method

IsUserCode() public method

Retrieves information on whether the module represents user code or not.
public IsUserCode ( int &pfUser ) : int
pfUser int Nonzero (TRUE) if module represents user code, zero (FALSE) if it does not.
return int
        public virtual int IsUserCode( out int pfUser )
        {
            Logger.Debug( string.Empty );
            pfUser = 0;
            return VSConstants.E_NOTIMPL;
        }