Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Base / System / Windows / Markup / InternalTypeHelper.cs / 1 / InternalTypeHelper.cs
//---------------------------------------------------------------------------- // // File: InternalTypeHelper.cs // // Description: // Defines a class that Provides methods used internally by the BamlReader to access // allowed internal types, properties and events in Partial Trust. The markup compiler // will generate a subclass of this class that provides an appropriate implementation // in the user's code context. // // Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Reflection; using System.ComponentModel; using System.Globalization; namespace System.Windows.Markup { ////// Class that provides methods used internally by the BamlReader to access allowed /// internal types, properties and events in Partial Trust. The markup compiler /// will generate a subclass of this class that provides an appropriate implementation /// in the user's code context. /// [EditorBrowsable(EditorBrowsableState.Never)] public abstract class InternalTypeHelper { ////// Default InternalTypeHelper constructor /// protected InternalTypeHelper() { } ////// Called by the BamlReader to create an internal Type. /// protected internal abstract object CreateInstance(Type type, CultureInfo culture); ////// Called by the BamlReader to set an internal property value on a target object. /// protected internal abstract object GetPropertyValue(PropertyInfo propertyInfo, object target, CultureInfo culture); ////// Called by the BamlReader to get an internal property value on a target object. /// protected internal abstract void SetPropertyValue(PropertyInfo propertyInfo, object target, object value, CultureInfo culture); ////// Called by the BamlReader to create an event delegate on a non-public handler method. /// protected internal abstract Delegate CreateDelegate(Type delegateType, object target, string handler); ////// Called by the BamlReader to attach an event handler delegate to an internal event. /// protected internal abstract void AddEventHandler(EventInfo eventInfo, object target, Delegate handler); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CompilationSection.cs
- TextRunCache.cs
- BamlRecordReader.cs
- LayoutUtils.cs
- MultipleViewProviderWrapper.cs
- DataTableReaderListener.cs
- PerformanceCounterLib.cs
- RightsManagementEncryptionTransform.cs
- StronglyTypedResourceBuilder.cs
- HandledMouseEvent.cs
- UserControl.cs
- CustomGrammar.cs
- HttpProcessUtility.cs
- ObjectDataSource.cs
- Vector3dCollection.cs
- QueryResponse.cs
- IisTraceListener.cs
- UniqueIdentifierService.cs
- LogRestartAreaEnumerator.cs
- ScrollItemProviderWrapper.cs
- CaseInsensitiveComparer.cs
- safePerfProviderHandle.cs
- RealizationContext.cs
- DataGrid.cs
- XmlDataLoader.cs
- MultiSelectRootGridEntry.cs
- CryptoHelper.cs
- Margins.cs
- SimpleRecyclingCache.cs
- SqlComparer.cs
- TransactionManager.cs
- TabletCollection.cs
- Matrix3D.cs
- StaticContext.cs
- PrintEvent.cs
- DataGridViewButtonColumn.cs
- Collection.cs
- ComboBox.cs
- AdornerHitTestResult.cs
- PauseStoryboard.cs
- Substitution.cs
- Helper.cs
- AdvancedBindingPropertyDescriptor.cs
- CaseInsensitiveHashCodeProvider.cs
- Compiler.cs
- Graph.cs
- ProxyGenerator.cs
- SqlHelper.cs
- ClipboardData.cs
- Internal.cs
- ListView.cs
- XmlFileEditor.cs
- XmlQueryContext.cs
- SqlCommandSet.cs
- SystemColors.cs
- SelectedDatesCollection.cs
- TagNameToTypeMapper.cs
- HttpRequest.cs
- XmlSchemaComplexContentExtension.cs
- ListenerPerfCounters.cs
- TraceEventCache.cs
- WSHttpBindingElement.cs
- DependencyProperty.cs
- SplitterEvent.cs
- AssertValidation.cs
- ImageSourceConverter.cs
- SchemaCreator.cs
- UnsafeNativeMethods.cs
- EventSinkActivity.cs
- Sql8ExpressionRewriter.cs
- ConfigurationValidatorAttribute.cs
- MessageSecurityProtocol.cs
- WebRequest.cs
- ExpiredSecurityTokenException.cs
- UnionCodeGroup.cs
- InstanceDataCollectionCollection.cs
- BitmapImage.cs
- LogLogRecord.cs
- QueryResponse.cs
- XmlQueryRuntime.cs
- HttpWebRequestElement.cs
- AnnotationDocumentPaginator.cs
- PickBranchDesigner.xaml.cs
- HtmlTableRow.cs
- FastPropertyAccessor.cs
- UpDownEvent.cs
- StickyNote.cs
- SamlSecurityTokenAuthenticator.cs
- LogLogRecord.cs
- OneWayElement.cs
- UpdatePanelControlTrigger.cs
- IndentedTextWriter.cs
- SchemaImporter.cs
- RestClientProxyHandler.cs
- NetworkCredential.cs
- DiscriminatorMap.cs
- sqlcontext.cs
- LiteralText.cs
- CroppedBitmap.cs
- KeySpline.cs