System.Collections.Concurrent.ConcurrentBag.Add(IdentifierReference)

Here are the examples of the csharp api class System.Collections.Concurrent.ConcurrentBag.Add(IdentifierReference) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: Rubberduck
Source File: Declaration.cs
public void AddReference(
            QualifiedModuleName module,
            Declaration scope,
            Declaration parent,
            ParserRuleContext callSiteContext,
            string identifier,
            Declaration callee,
            Selection selection,
            IEnumerable<IAnnotation> annotations,
            bool isAssignmentTarget = false,
            bool hasExplicitLetStatement = false)
        {
            _references.Add(
                new IdentifierReference(
                    module,
                    scope,
                    parent,
                    identifier,
                    selection,
                    callSiteContext,
                    callee,
                    isAssignmentTarget,
                    hasExplicitLetStatement,
                    annotations));
        }