20 references to Random
mscorlib (3)
system\Collections\Concurrent\ConcurrentStack.cs (1)
682
Random r = new
Random
(Environment.TickCount & Int32.MaxValue); // avoid the case where TickCount could return Int32.MinValue
system\random.cs (1)
53
:
this
(Environment.TickCount) {
system\threading\threadpool.cs (1)
876
public readonly Random random = new
Random
(Thread.CurrentThread.ManagedThreadId);
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\LoadRetryExponentialBackoffStrategy.cs (1)
17
Random random = new
Random
(DateTime.Now.Millisecond);
System.Data (1)
fx\src\data\System\Data\ProviderBase\DbConnectionPool.cs (1)
419
private static readonly Random _random = new
Random
(5101977); // Value obtained from Dave Driver
System.Data.Entity (1)
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingProcessor.cs (1)
215
static Random rnd = new
Random
(1507);
System.IdentityModel (1)
System\IdentityModel\Tokens\SessionSecurityToken.cs (1)
1062
rnd = new
Random
(unchecked((int)DateTime.Now.Ticks));
System.ServiceModel (3)
System\ServiceModel\Channels\TcpChannelListener.cs (1)
185
static Random randomPortGenerator = new
Random
(AppDomain.CurrentDomain.GetHashCode() | Environment.TickCount);
System\ServiceModel\Channels\UtilityExtension.cs (1)
45
pruneInterval = TimeSpan.FromMilliseconds(PruneIntervalMilliseconds + new
Random
(Process.GetCurrentProcess().Id).Next(PruneIntervalMilliseconds));
System\ServiceModel\Dispatcher\SecurityImpersonationBehavior.cs (1)
431
this.random = new
Random
(unchecked((int)DateTime.Now.Ticks));
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\SynchronizedRandom.cs (1)
19
:
base
(seed)
System\ServiceModel\Channels\UdpUtility.cs (1)
165
Random randomNumberGenerator = new
Random
(AppDomain.CurrentDomain.GetHashCode() | Environment.TickCount);
System.ServiceModel.Internals (1)
System\Runtime\BackoffTimeoutHelper.cs (1)
38
this.random = new
Random
(GetHashCode());
System.Web.DataVisualization (2)
Common\DataManager\DataSeries.cs (1)
1009
Random random2 = new
Random
(seed);
Common\General\AxisScaleSegments.cs (1)
602
Random rand = new
Random
(435657);
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ListView.cs (2)
3245
rnd = new
Random
((int)System.DateTime.Now.Ticks);
3247
rnd = new
Random
(handle);
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
5399
Random rnd = new
Random
(DateTime.Now.Millisecond);
System.Windows.Forms.DataVisualization (2)
Common\DataManager\DataSeries.cs (1)
1009
Random random2 = new
Random
(seed);
Common\General\AxisScaleSegments.cs (1)
602
Random rand = new
Random
(435657);