System.Security.Util.Config.GetCacheEntry C# (CSharp) Method

GetCacheEntry() private method

private GetCacheEntry ( ConfigId id, int numKey, char key, byte &data ) : bool
id ConfigId
numKey int
key char
data byte
return bool
        internal static extern bool GetCacheEntry(ConfigId id, int numKey, char[] key, out byte[] data);
        [MethodImplAttribute(MethodImplOptions.InternalCall)]

Usage Example

        internal static bool GetCacheEntry(ConfigId id, int numKey, byte[] key, out byte[] data)
        {
            byte[] array      = null;
            bool   cacheEntry = Config.GetCacheEntry(id, numKey, key, key.Length, JitHelpers.GetObjectHandleOnStack <byte[]>(ref array));

            data = array;
            return(cacheEntry);
        }
All Usage Examples Of System.Security.Util.Config::GetCacheEntry