PortablePlatformAbstraction.Get<T> Method (Boolean)
Gets the abstraction of the portable platform.
Namespace: Microsoft.WindowsAzure.Common.Internals
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
public static T Get<T>(
bool hasDefaultImplementation = false
)
public:
generic<typename T>
static T Get(
bool hasDefaultImplementation = false
)
static member Get<'T> :
hasDefaultImplementation:bool = false -> 'T
Public Shared Function Get(Of T) (
hasDefaultImplementation As Boolean
) As T
Parameters
hasDefaultImplementation
Type: System.BooleanThe indicator of whether the abstraction has a default implementation. true if the abstraction has a default implementation; otherwise, false.
Return Value
Type: T
The abstraction of the portable platform.
Type Parameters
- T
The type of the abstraction.
See Also
PortablePlatformAbstraction Class
Microsoft.WindowsAzure.Common.Internals Namespace
Return to top