System.Collections.Generic.Dictionary.Remove(UniqueId)

Here are the examples of the csharp api System.Collections.Generic.Dictionary.Remove(UniqueId) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : SecuritySessionFilter.cs
with MIT License
from CoreWCF

public bool Remove(MessageFilter filter)
            {
                if (!(filter is SecuritySessionFilter sessionFilter))
                {
                    return false;
                }
                bool result = _filterMappings.Remove(filter);
                if (result)
                {
                    _contextMappings.Remove(sessionFilter.SecurityContextTokenId);
                }
                return result;
            }