Пример #1
0
        internal void RemoveSocketEndpointSubcription(string theSocketEndpointGuid, string theSubcriptionGuid)
        {
            SocketEndpointComponent SocketEndpoint = SocketEndpoints.FirstOrDefault(e => e.Guid == theSocketEndpointGuid);

            if (SocketEndpoint != null)
            {
                SocketEndpoint.RemoveSubcription(theSubcriptionGuid);
            }
        }