File: infocard\client\System\IdentityModel\Selectors\RpcAsymmetricCryptoParameters.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 RpcAsymmetricCryptoParameters
    {
        public int keySize;
        [MarshalAs(UnmanagedType.LPWStr)]
        public string keyExchangeAlgorithm;
        [MarshalAs(UnmanagedType.LPWStr)]
        public string signatureAlgorithm;
    }
}