CCNet.Build.Common.BinaryReference.EnsureNotGlobal C# (CSharp) Method

EnsureNotGlobal() private method

Makes sure current reference is not taken from global collection.
private EnsureNotGlobal ( ) : void
return void
		private void EnsureNotGlobal()
		{
			if (IsGlobal)
				throw new InvalidOperationException("Global reference cannot be updated.");
		}