SMPProcessorAffinityMask Property

MSBuild

The SMPProcessorAffinityMask property configures the hexadecimal processor mask. The hexadecimal processor mask indicates to which CPU the worker processes in an application pool should be bound. Before this property takes affect, the SMPAffinitized property must be set to true for the application pool. These properties cannot be set through IIS Manager. Do not set this property to zero. Doing so causes no SMP affinity to be configured, creating an error condition. The default DWORD value is 4294967295 (or -1), which is represented in hexadecimal as 0xFFFFFFFF. A value of 0xFFFFFFFF in SMPProcessorAffinityMask indicates that all processors are enabled.


Namespace: MSBuild.Community.Tasks.IIS
Assembly: MSBuild.Community.Tasks (in MSBuild.Community.Tasks.dll)

Syntax

Visual Basic (Declaration)
Public Property SMPProcessorAffinityMask As Long
C#
public long SMPProcessorAffinityMask { get; set; }
C++
public property long SMPProcessorAffinityMask sealed  {
    __int64 get();
    void set(__int64 value);
}
J#
/** property */
public long get_SMPProcessorAffinityMask();

/** property */
public void set_SMPProcessorAffinityMask(long value);
JScript
public function get SMPProcessorAffinityMask() : long

public function set SMPProcessorAffinityMask(value : long);

Property Value

Value indicating the SMP processor affinity bit mask.

See Also

Syntax based on .NET Framework version 2.0.
Documentation version 1.0.0.0.