Namespace: Microsoft.IdentityModel.Configuration
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As CustomTypeElement
Dim value As Type

value = instance.TypeName

instance.TypeName = value

Syntax

Visual Basic
<ConfigurationPropertyAttribute("type", IsRequired:=True, IsKey:=True)> _
<TypeConverterAttribute(GetType(TypeNameConverter))> _
Public Property TypeName As Type
C#
[ConfigurationPropertyAttribute("type", IsRequired=true, IsKey=true)] 
[TypeConverterAttribute(typeof(TypeNameConverter))] 
public Type TypeName { get; set; }
C++
[ConfigurationPropertyAttribute(L"type", IsRequired=true, IsKey=true)] 
[TypeConverterAttribute(typeof(TypeNameConverter))] 
public:
property Type^ TypeName {
		Type^ get ();
		void set (Type^ value);
}
J#
/** @property */
public Type get_TypeName ()

/** @property */
public void set_TypeName (Type value)
JScript
public function get TypeName () : Type

public function set TypeName (value : Type)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also