ClientCodeGenerationOptions.UseFullTypeNames Property
[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]
Gets or sets a value indicating whether fully qualified type names should be used during code generation.
Namespace: Microsoft.ServiceModel.DomainServices.Tools
Assembly: Microsoft.ServiceModel.DomainServices.Tools (in Microsoft.ServiceModel.DomainServices.Tools.dll)
Syntax
'Declaration
Public Property UseFullTypeNames As Boolean
Get
Set
'Usage
Dim instance As ClientCodeGenerationOptions
Dim value As Boolean
value = instance.UseFullTypeNames
instance.UseFullTypeNames = value
public bool UseFullTypeNames { get; set; }
public:
property bool UseFullTypeNames {
bool get ();
void set (bool value);
}
member UseFullTypeNames : bool with get, set
function get UseFullTypeNames () : boolean
function set UseFullTypeNames (value : boolean)
Property Value
Type: System.Boolean
true if fully qualified type names should be used during code generation; otherwise, false.
Remarks
If true the code generator will always generate fully qualified type names and avoid adding unnecessary imports. If false the code generator will generate only short type names and add import statements.