File: infocard\client\System\IdentityModel\Selectors\RpcSymmetricCryptoParameters.cs | |
Project: ndp\cdf\src\WCF\System.IdentityModel.Selectors.csproj (System.IdentityModel.Selectors) |
//----------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.IdentityModel.Selectors { using System; using System.Runtime.InteropServices; [StructLayout(LayoutKind.Sequential)] internal struct RpcSymmetricCryptoParameters { public int keySize; public int blockSize; public int feedbackSize; } } |