Metadata added to the procedure will help to differentiate between MARS, returned by stored procedure.
CREATE PROC MyProc
AS
SELECT * FROM Authors
sp_add_MARS_metadata MyProc, Authors
SELECT * FROM Authors WHERE State = 'CA'
sp_add_MARS_metadata MyProc, AuthorsCA
GO