// Token: 0x06002301 RID: 8961 RVA: 0x00081B68 File Offset: 0x0007FD68
    public static bool ContainsSocket(this global::Socket.Map map, int index)
    {
        global::Socket socket;

        return(map.FindSocket(index, out socket));
    }
    // Token: 0x060022FF RID: 8959 RVA: 0x00081B38 File Offset: 0x0007FD38
    public static bool ContainsSocket <TSocket>(this global::Socket.Map map, int index) where TSocket : global::Socket, new()
    {
        TSocket tsocket;

        return(map.FindSocket(index, out tsocket));
    }
    // Token: 0x06002300 RID: 8960 RVA: 0x00081B50 File Offset: 0x0007FD50
    public static bool ContainsSocket(this global::Socket.Map map, string name)
    {
        global::Socket socket;

        return(map.FindSocket(name, out socket));
    }
    // Token: 0x060022FE RID: 8958 RVA: 0x00081B20 File Offset: 0x0007FD20
    public static bool ContainsSocket <TSocket>(this global::Socket.Map map, string name) where TSocket : global::Socket, new()
    {
        TSocket tsocket;

        return(map.FindSocket(name, out tsocket));
    }