20 references to Random
mscorlib (3)
system\Collections\Concurrent\ConcurrentStack.cs (1)
682Random 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)
876public readonly Random random = new Random(Thread.CurrentThread.ManagedThreadId);
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\LoadRetryExponentialBackoffStrategy.cs (1)
17Random random = new Random(DateTime.Now.Millisecond);
System.Data (1)
fx\src\data\System\Data\ProviderBase\DbConnectionPool.cs (1)
419private static readonly Random _random = new Random(5101977); // Value obtained from Dave Driver
System.Data.Entity (1)
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingProcessor.cs (1)
215static Random rnd = new Random(1507);
System.IdentityModel (1)
System\IdentityModel\Tokens\SessionSecurityToken.cs (1)
1062rnd = new Random(unchecked((int)DateTime.Now.Ticks));
System.ServiceModel (3)
System\ServiceModel\Channels\TcpChannelListener.cs (1)
185static Random randomPortGenerator = new Random(AppDomain.CurrentDomain.GetHashCode() | Environment.TickCount);
System\ServiceModel\Channels\UtilityExtension.cs (1)
45pruneInterval = TimeSpan.FromMilliseconds(PruneIntervalMilliseconds + new Random(Process.GetCurrentProcess().Id).Next(PruneIntervalMilliseconds));
System\ServiceModel\Dispatcher\SecurityImpersonationBehavior.cs (1)
431this.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)
165Random randomNumberGenerator = new Random(AppDomain.CurrentDomain.GetHashCode() | Environment.TickCount);
System.ServiceModel.Internals (1)
System\Runtime\BackoffTimeoutHelper.cs (1)
38this.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)
3245rnd = new Random((int)System.DateTime.Now.Ticks); 3247rnd = new Random(handle);
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
5399Random 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);