Share via


IWMSContext.GetLongValue (C#)

banner art

Previous Next

IWMSContext.GetLongValue (C#)

The GetLongValue method retrieves an int value from the specified context.

Syntax

  

Parameters

pstrName

string specifying the name portion of the name-value pair in the context.

lNameHint

int containing an optional key that can be used to more efficiently access a value.

plValue

Reference to an int containing the value.

lOptions

Reserved for future use.

Return Values

This method does not return a value.

If this method fails, it throws an exception.

Number Description
0x8002000B The property specified by the pstrName parameter could not be found.
0x80020005 The data type of the property specified by the pstrName parameter is not VT_I4.
0x80004003 plValue is null.

Example Code

Guid ContextGuid = typeof(IWMSContext).GUID;
IWMSContext     Context;
IntPtr          pUnknown;
int             iValue;

try
{          
    m_ClassFactory.AllocIWMSContext(ref ContextGuid,
                                   WMS_CONTEXT_TYPE.WMS_USER_CONTEXT_TYPE,
                                   pUserContext, out pUnknown);
    Context = (IWMSContext)Marshal.GetTypedObjectForIUnknown(pUnknown,
                                                     typeof(IWMSContext));
            
    Context.SetStringValue(WMSDefines.WMS_CONTENT_DESCRIPTION_TITLE,
                           WMSDefines.WMS_CONTENT_DESCRIPTION_TITLE_ID,
                           "My Title", 0);
    Context.SetLongValue(WMSDefines.WMS_CONTENT_DESCRIPTION_NO_SKIP,
                         WMSDefines.WMS_CONTENT_DESCRIPTION_NO_SKIP_ID,
                         1, 0);

    Context.GetLongValue(WMSDefines.WMS_CONTENT_DESCRIPTION_NO_SKIP,
                         WMSDefines.WMS_CONTENT_DESCRIPTION_NO_SKIP_ID,
                         out iValue, 0);
}
catch( Exception e )
{
    // TODO: Handle exceptions.
}

Requirements

Reference: Add a reference to Microsoft.WindowsMediaServices.

Namespace: Microsoft.WindowsMediaServices.Interop.

Assembly: Microsoft.WindowsMediaServices.dll.

Library: WMSServerTypeLib.dll.

Platform: Windows Server 2003, Enterprise Edition; Windows Server 2003, Datacenter Edition; Windows Server 2008.

See Also

Previous Next