public System.IAsyncResult Beginget_ramcache_entry_exact_match(LocalLBRAMCacheInformationRAMCacheKey [] keys, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("get_ramcache_entry_exact_match", new object[] {
     keys}, callback, asyncState);
 }
 public System.IAsyncResult Beginevict_ramcache_entry_v2(LocalLBRAMCacheInformationRAMCacheKey [] keys,bool exact_match, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("evict_ramcache_entry_v2", new object[] {
     keys,
     exact_match}, callback, asyncState);
 }
        public void evict_ramcache_entry_v2(
		LocalLBRAMCacheInformationRAMCacheKey [] keys,
		bool exact_match
	)
        {
            this.Invoke("evict_ramcache_entry_v2", new object [] {
                keys,
                exact_match});
        }
        public LocalLBRAMCacheInformationRAMCacheEntryExactMatch[][] get_ramcache_entry_exact_match(
		LocalLBRAMCacheInformationRAMCacheKey [] keys
	)
        {
            object [] results = this.Invoke("get_ramcache_entry_exact_match", new object [] {
                keys});
            return ((LocalLBRAMCacheInformationRAMCacheEntryExactMatch [] [])(results[0]));
        }
        public void evict_ramcache_entry(
		LocalLBRAMCacheInformationRAMCacheKey [] keys
	)
        {
            this.Invoke("evict_ramcache_entry", new object [] {
                keys});
        }