The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
LCIDConversionAttribute Class
.NET Framework 3.0
Indicates that a method's unmanaged signature expects a locale identifier (LCID) parameter.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(true)] [AttributeUsageAttribute(AttributeTargets.Method, Inherited=false)] public sealed class LCIDConversionAttribute : Attribute
/** @attribute ComVisibleAttribute(true) */ /** @attribute AttributeUsageAttribute(AttributeTargets.Method, Inherited=false) */ public final class LCIDConversionAttribute extends Attribute
ComVisibleAttribute(true) AttributeUsageAttribute(AttributeTargets.Method, Inherited=false) public final class LCIDConversionAttribute extends Attribute
Not applicable.
The following example demonstrates different signature translations based on different values supplied to LCIDConversionAttribute.
using System; using System.Runtime.InteropServices; using System.Reflection; class LCIDAttrSample { private const int LCID_INSTALLED = 1; private const int LCID_SUPPORTED = 2; [DllImport("KERNEL32.DLL", EntryPoint="IsValidLocale", SetLastError = true, CharSet = CharSet.Auto)] [LCIDConversionAttribute(0)] // Position of the LCID argument public static extern bool IsValidLocale( uint dwFlags // options ); public void CheckCurrentLCID() { MethodInfo mthIfo = this.GetType().GetMethod("IsValidLocale"); Attribute attr = Attribute.GetCustomAttribute(mthIfo,typeof(LCIDConversionAttribute)); if( attr != null) { LCIDConversionAttribute lcidAttr = (LCIDConversionAttribute)attr; Console.WriteLine("Position of the LCID argument in the unmanaged signature: " + lcidAttr.Value.ToString()); } bool res = IsValidLocale(LCID_INSTALLED); Console.WriteLine("Result LCID_INSTALLED " + res.ToString()); res = IsValidLocale(LCID_SUPPORTED); Console.WriteLine("Result LCID_SUPPORTED " + res.ToString()); } static void Main(string[] args) { LCIDAttrSample smpl = new LCIDAttrSample(); smpl.CheckCurrentLCID(); } }
import System.*;
import System.Runtime.InteropServices.*;
import System.Reflection.*;
class LCIDAttrSample
{
private static final int LCID_INSTALLED = 1;
private static final int LCID_SUPPORTED = 2;
/** @attribute DllImport("KERNEL32.DLL", EntryPoint = "IsValidLocale",
SetLastError = true, CharSet = CharSet.Auto)
*/
/** @attribute LCIDConversionAttribute(0)
*/
public static native boolean IsValidLocale(int dwFlags);
// Position of the LCID argument options
public void CheckCurrentLCID()
{
MethodInfo mthIfo = this.GetType().GetMethod("IsValidLocale");
Attribute attr = Attribute.GetCustomAttribute(mthIfo,
LCIDConversionAttribute.class.ToType());
if (attr != null) {
LCIDConversionAttribute lcidAttr = (LCIDConversionAttribute)attr;
Console.WriteLine("Position of the LCID argument in the unmanaged "
+ "signature: "
+ System.Convert.ToString(lcidAttr.get_Value()));
}
boolean res = IsValidLocale(LCID_INSTALLED);
Console.WriteLine("Result LCID_INSTALLED "
+ System.Convert.ToString(res));
res = IsValidLocale(LCID_SUPPORTED);
Console.WriteLine("Result LCID_SUPPORTED "
+ System.Convert.ToString(res));
} //CheckCurrentLCID
public static void main(String[] args)
{
LCIDAttrSample smpl = new LCIDAttrSample();
smpl.CheckCurrentLCID();
} //main
} //LCIDAttrSample
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
Show: