Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / GacUtil.cs / 1 / GacUtil.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.Configuration {
using System.Web.Configuration;
using System.Runtime.InteropServices;
using System.Security.Permissions;
/*
class for installing ASP.BrowserCapabilitiesFactory into gac
*/
internal sealed class GacUtil : IGac {
[SecurityPermission(SecurityAction.Demand, UnmanagedCode = true)]
public void GacInstall(string assemblyPath) {
#if !FEATURE_PAL
IAssemblyCache ac = null;
int hr = NativeMethods.CreateAssemblyCache(out ac, 0);
if (0 == hr) hr = ac.InstallAssembly(0, assemblyPath, IntPtr.Zero);
#else // !FEATURE_PAL
int hr = -1;
try
{
Process gacutilprocess = new System.Diagnostics.Process();
if (gacutilprocess != null)
{
gacutilprocess.StartInfo.CreateNoWindow = true;
#if PLATFORM_UNIX
gacutilprocess.StartInfo.FileName = "gacutil";
#else
gacutilprocess.StartInfo.FileName = "gacutil.exe";
#endif
gacutilprocess.StartInfo.UseShellExecute = false;
gacutilprocess.StartInfo.Arguments = "/i " + assemblyPath;
gacutilprocess.Start();
while (!gacutilprocess.HasExited)
{
Thread.Sleep(250);
}
hr = gacutilprocess.ExitCode;
}
}
catch (Exception)
{
hr = -1;
}
#endif // FEATURE_PAL
if (0 != hr) {
throw new Exception(SR.GetString(SR.Failed_gac_install));
}
}
[SecurityPermission(SecurityAction.Demand, UnmanagedCode = true)]
public bool GacUnInstall(string assemblyName) {
IAssemblyCache ac = null;
uint position = 0;
int hr = NativeMethods.CreateAssemblyCache(out ac, 0);
if (0 == hr) {
hr = ac.UninstallAssembly(0, assemblyName, IntPtr.Zero, out position);
if (position == 3 /*IASSEMBLYCACHE_UNINSTALL_DISPOSITION_ALREADY_UNINSTALLED*/) {
return false;
}
}
if (0 != hr) {
throw new Exception(SR.GetString(SR.Failed_gac_uninstall));
}
return true;
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UIElement3DAutomationPeer.cs
- TypeEnumerableViewSchema.cs
- IUnknownConstantAttribute.cs
- Int32AnimationBase.cs
- CurrentChangingEventManager.cs
- EdmFunctionAttribute.cs
- Aggregates.cs
- WebPermission.cs
- SoapIncludeAttribute.cs
- AssemblyCollection.cs
- User.cs
- QilStrConcat.cs
- SessionEndingEventArgs.cs
- DataGridPageChangedEventArgs.cs
- SmiMetaDataProperty.cs
- SqlDataSourceQueryEditorForm.cs
- WindowsRichEdit.cs
- OpenFileDialog.cs
- PeerContact.cs
- PropertyEmitterBase.cs
- basecomparevalidator.cs
- MemoryPressure.cs
- GZipStream.cs
- JapaneseLunisolarCalendar.cs
- SeekableReadStream.cs
- StyleXamlParser.cs
- GPPOINT.cs
- PermissionRequestEvidence.cs
- CheckBoxRenderer.cs
- TdsEnums.cs
- InputLanguageSource.cs
- BoolLiteral.cs
- ReachSerializerAsync.cs
- BindingContext.cs
- CodeAttributeDeclarationCollection.cs
- WindowsGraphicsWrapper.cs
- DecimalKeyFrameCollection.cs
- AutomationEventArgs.cs
- Material.cs
- DataGridView.cs
- WebPartPersonalization.cs
- SoundPlayerAction.cs
- EntityParameter.cs
- DateTimePicker.cs
- CommentEmitter.cs
- DependencyObjectValidator.cs
- ScrollChrome.cs
- DelegatedStream.cs
- SoapObjectInfo.cs
- MultilineStringConverter.cs
- CodeDirectoryCompiler.cs
- Size.cs
- ActivityStateQuery.cs
- SiteMapNode.cs
- OutputCacheSection.cs
- SqlMethodTransformer.cs
- PostBackOptions.cs
- Relationship.cs
- RepeaterItemEventArgs.cs
- XslUrlEditor.cs
- SecurityStandardsManager.cs
- AbstractSvcMapFileLoader.cs
- Literal.cs
- BlurEffect.cs
- Soap12ProtocolReflector.cs
- PeerNameResolver.cs
- CustomValidator.cs
- Stroke2.cs
- AnimationException.cs
- PropertyGridEditorPart.cs
- Nodes.cs
- AspCompat.cs
- PanelStyle.cs
- ScrollContentPresenter.cs
- HandleCollector.cs
- MatrixCamera.cs
- WhitespaceSignificantCollectionAttribute.cs
- TypeConverterHelper.cs
- FontEmbeddingManager.cs
- SQLInt16.cs
- SiteMapNodeItem.cs
- oledbconnectionstring.cs
- WebServiceHandlerFactory.cs
- ComPersistableTypeElement.cs
- MetadataProperty.cs
- basemetadatamappingvisitor.cs
- Parallel.cs
- UIPropertyMetadata.cs
- CodeCastExpression.cs
- VariableAction.cs
- MemberPath.cs
- QueuedDeliveryRequirementsMode.cs
- CodeVariableReferenceExpression.cs
- AsymmetricKeyExchangeDeformatter.cs
- ZoneIdentityPermission.cs
- WebPartZone.cs
- ViewStateException.cs
- ExtentKey.cs
- HttpGetProtocolImporter.cs
- WebPartCloseVerb.cs