/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/ComIntegration/ServiceMoniker.cs
C# | 186 lines | 138 code | 45 blank | 3 comment | 9 complexity | a8e4d8161acd9252eefc3b2bd11aa8cc MD5 | raw file
Possible License(s): GPL-2.0, CC-BY-SA-3.0, LGPL-2.0, MPL-2.0-no-copyleft-exception, LGPL-2.1, Unlicense, Apache-2.0
- //-----------------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- namespace System.ServiceModel.ComIntegration
- {
- using System;
- using System.Runtime.InteropServices.ComTypes;
- using Microsoft.Win32;
- using System.Reflection;
- using System.Collections.Generic;
- using System.Threading;
- using System.Runtime.Remoting;
- using System.Runtime.Remoting.Services;
- using System.Diagnostics;
- using System.ServiceModel.Diagnostics;
- [System.Runtime.InteropServices.ComVisible(true)]
- [System.Runtime.InteropServices.Guid("CE39D6F3-DAB7-41b3-9F7D-BD1CC4E92399")]
- [MonikerProxyAttribute]
- public sealed class ServiceMoniker : ContextBoundObject
- {
- }
- internal sealed class ServiceMonikerInternal : ContextBoundObject, IMoniker, IParseDisplayName, IDisposable
- {
- void IDisposable.Dispose()
- {
- }
- public ServiceMonikerInternal()
- {
- PropertyTable = new Dictionary<MonikerHelper.MonikerAttribute, string>();
- }
- void IMoniker.GetClassID(out System.Guid clsid)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- int IMoniker.IsDirty()
- {
- return HR.S_FALSE;
- }
- void IMoniker.Load(IStream stream)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.Save(IStream stream, bool isDirty)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.GetSizeMax(out Int64 size)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.BindToStorage(IBindCtx pbc, IMoniker pmkToLeft, ref Guid riid, out object ppvObj)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.BindToObject(IBindCtx pbc, IMoniker pmkToLeft, ref Guid riidResult, IntPtr ppvResult)
- {
- ProxyBuilder.Build(PropertyTable, ref riidResult, ppvResult);
- }
- void IMoniker.Hash(IntPtr pdwHash)
- {
- if (IntPtr.Zero == pdwHash)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("pdwHash");
- System.Runtime.InteropServices.Marshal.WriteInt32(pdwHash, 0);
- }
- void IMoniker.CommonPrefixWith(IMoniker pmkOther,
- out IMoniker ppmkPrefix)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.ComposeWith(IMoniker pmkRight, bool fOnlyIfNotGeneric, out IMoniker ppmkComposite)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.Enum(bool fForward, out IEnumMoniker ppenumMoniker)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.GetDisplayName(IBindCtx pbc, IMoniker pmkToLeft, out string ppszDisplayName)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.GetTimeOfLastChange(IBindCtx pbc, IMoniker pmkToLeft, out FILETIME pFileTime)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.Inverse(out IMoniker ppmk)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- int IMoniker.IsEqual(IMoniker pmkOtherMoniker)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- int IMoniker.IsRunning(IBindCtx pbc,
- IMoniker pmkToLeft,
- IMoniker pmkNewlyRunning)
- {
- return HR.S_FALSE;
- }
- int IMoniker.IsSystemMoniker(IntPtr pdwMksys)
- {
- if (IntPtr.Zero == pdwMksys)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("pdwMksys");
- System.Runtime.InteropServices.Marshal.WriteInt32(pdwMksys, 0);
- return HR.S_FALSE;
- }
- void IMoniker.ParseDisplayName(IBindCtx pbc,
- IMoniker pmkToLeft,
- string pszDisplayName,
- out int pchEaten,
- out IMoniker ppmkOut)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.Reduce(IBindCtx pbc, int dwReduceHowFar, ref IMoniker ppmkToLeft, out IMoniker ppmkReduced)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IMoniker.RelativePathTo(IMoniker pmkOther, out IMoniker ppmkRelPath)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException());
- }
- void IParseDisplayName.ParseDisplayName(IBindCtx pbc, string pszDisplayName, IntPtr pchEaten, IntPtr ppmkOut)
- {
- if (IntPtr.Zero == ppmkOut)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("ppmkOut");
- System.Runtime.InteropServices.Marshal.WriteIntPtr(ppmkOut, IntPtr.Zero);
- if (IntPtr.Zero == pchEaten)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("pchEaten");
- if (string.IsNullOrEmpty(pszDisplayName))
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("pszDisplayName");
- MonikerUtility.Parse(pszDisplayName, ref PropertyTable);
- ComPlusServiceMonikerTrace.Trace(TraceEventType.Verbose, TraceCode.ComIntegrationServiceMonikerParsed,
- SR.TraceCodeComIntegrationServiceMonikerParsed, PropertyTable);
- System.Runtime.InteropServices.Marshal.WriteInt32(pchEaten, pszDisplayName.Length);
- IntPtr ppv = InterfaceHelper.GetInterfacePtrForObject(typeof(IMoniker).GUID, this);
- System.Runtime.InteropServices.Marshal.WriteIntPtr(ppmkOut, ppv);
- }
- private Dictionary<MonikerHelper.MonikerAttribute, string> PropertyTable;
- }
- }