Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / CodeDOM / CodeMemberMethod.cs / 1 / CodeMemberMethod.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.CodeDom {
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.Collections;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
///
///
/// Represents a class method.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeMemberMethod : CodeTypeMember {
private CodeParameterDeclarationExpressionCollection parameters = new CodeParameterDeclarationExpressionCollection();
private CodeStatementCollection statements = new CodeStatementCollection();
private CodeTypeReference returnType;
private CodeTypeReference privateImplements = null;
private CodeTypeReferenceCollection implementationTypes = null;
private CodeAttributeDeclarationCollection returnAttributes = null;
[OptionalField]
private CodeTypeParameterCollection typeParameters;
private int populated = 0x0;
private const int ParametersCollection = 0x1;
private const int StatementsCollection = 0x2;
private const int ImplTypesCollection = 0x4;
///
///
/// An event that will be fired the first time the Parameters Collection is accessed.
///
///
public event EventHandler PopulateParameters;
///
///
/// An event that will be fired the first time the Statements Collection is accessed.
///
///
public event EventHandler PopulateStatements;
///
///
/// An event that will be fired the first time the ImplementationTypes Collection is accessed.
///
///
public event EventHandler PopulateImplementationTypes;
///
///
/// Gets or sets the return type of the method.
///
///
public CodeTypeReference ReturnType {
get {
if (returnType == null) {
returnType = new CodeTypeReference(typeof(void).FullName);
}
return returnType;
}
set {
returnType = value;
}
}
///
///
/// Gets or sets the statements within the method.
///
///
public CodeStatementCollection Statements {
get {
if (0 == (populated & StatementsCollection)) {
populated |= StatementsCollection;
if (PopulateStatements != null) PopulateStatements(this, EventArgs.Empty);
}
return statements;
}
}
///
///
/// Gets or sets the parameter declarations for the method.
///
///
public CodeParameterDeclarationExpressionCollection Parameters {
get {
if (0 == (populated & ParametersCollection)) {
populated |= ParametersCollection;
if (PopulateParameters != null) PopulateParameters(this, EventArgs.Empty);
}
return parameters;
}
}
///
/// [To be supplied.]
///
public CodeTypeReference PrivateImplementationType {
get {
return privateImplements;
}
set {
privateImplements = value;
}
}
///
/// [To be supplied.]
///
public CodeTypeReferenceCollection ImplementationTypes {
get {
if (implementationTypes == null) {
implementationTypes = new CodeTypeReferenceCollection();
}
if (0 == (populated & ImplTypesCollection)) {
populated |= ImplTypesCollection;
if (PopulateImplementationTypes != null) PopulateImplementationTypes(this, EventArgs.Empty);
}
return implementationTypes;
}
}
///
/// [To be supplied.]
///
public CodeAttributeDeclarationCollection ReturnTypeCustomAttributes {
get {
if (returnAttributes == null) {
returnAttributes = new CodeAttributeDeclarationCollection();
}
return returnAttributes;
}
}
[System.Runtime.InteropServices.ComVisible(false)]
public CodeTypeParameterCollection TypeParameters {
get {
if( typeParameters == null) {
typeParameters = new CodeTypeParameterCollection();
}
return typeParameters;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.CodeDom {
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.Collections;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
///
///
/// Represents a class method.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeMemberMethod : CodeTypeMember {
private CodeParameterDeclarationExpressionCollection parameters = new CodeParameterDeclarationExpressionCollection();
private CodeStatementCollection statements = new CodeStatementCollection();
private CodeTypeReference returnType;
private CodeTypeReference privateImplements = null;
private CodeTypeReferenceCollection implementationTypes = null;
private CodeAttributeDeclarationCollection returnAttributes = null;
[OptionalField]
private CodeTypeParameterCollection typeParameters;
private int populated = 0x0;
private const int ParametersCollection = 0x1;
private const int StatementsCollection = 0x2;
private const int ImplTypesCollection = 0x4;
///
///
/// An event that will be fired the first time the Parameters Collection is accessed.
///
///
public event EventHandler PopulateParameters;
///
///
/// An event that will be fired the first time the Statements Collection is accessed.
///
///
public event EventHandler PopulateStatements;
///
///
/// An event that will be fired the first time the ImplementationTypes Collection is accessed.
///
///
public event EventHandler PopulateImplementationTypes;
///
///
/// Gets or sets the return type of the method.
///
///
public CodeTypeReference ReturnType {
get {
if (returnType == null) {
returnType = new CodeTypeReference(typeof(void).FullName);
}
return returnType;
}
set {
returnType = value;
}
}
///
///
/// Gets or sets the statements within the method.
///
///
public CodeStatementCollection Statements {
get {
if (0 == (populated & StatementsCollection)) {
populated |= StatementsCollection;
if (PopulateStatements != null) PopulateStatements(this, EventArgs.Empty);
}
return statements;
}
}
///
///
/// Gets or sets the parameter declarations for the method.
///
///
public CodeParameterDeclarationExpressionCollection Parameters {
get {
if (0 == (populated & ParametersCollection)) {
populated |= ParametersCollection;
if (PopulateParameters != null) PopulateParameters(this, EventArgs.Empty);
}
return parameters;
}
}
///
/// [To be supplied.]
///
public CodeTypeReference PrivateImplementationType {
get {
return privateImplements;
}
set {
privateImplements = value;
}
}
///
/// [To be supplied.]
///
public CodeTypeReferenceCollection ImplementationTypes {
get {
if (implementationTypes == null) {
implementationTypes = new CodeTypeReferenceCollection();
}
if (0 == (populated & ImplTypesCollection)) {
populated |= ImplTypesCollection;
if (PopulateImplementationTypes != null) PopulateImplementationTypes(this, EventArgs.Empty);
}
return implementationTypes;
}
}
///
/// [To be supplied.]
///
public CodeAttributeDeclarationCollection ReturnTypeCustomAttributes {
get {
if (returnAttributes == null) {
returnAttributes = new CodeAttributeDeclarationCollection();
}
return returnAttributes;
}
}
[System.Runtime.InteropServices.ComVisible(false)]
public CodeTypeParameterCollection TypeParameters {
get {
if( typeParameters == null) {
typeParameters = new CodeTypeParameterCollection();
}
return typeParameters;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormViewRow.cs
- BinaryObjectReader.cs
- WebEvents.cs
- TimelineClockCollection.cs
- PageTheme.cs
- HtmlInputCheckBox.cs
- WorkflowControlClient.cs
- DataGridViewCellConverter.cs
- SecurityElement.cs
- WebServiceTypeData.cs
- SafeThreadHandle.cs
- FrugalList.cs
- DecoderExceptionFallback.cs
- Rectangle.cs
- EmptyStringExpandableObjectConverter.cs
- XamlDesignerSerializationManager.cs
- MultiView.cs
- TraceUtils.cs
- EndOfStreamException.cs
- XmlStreamStore.cs
- XPathSelfQuery.cs
- FileDialog_Vista_Interop.cs
- Win32Exception.cs
- LineUtil.cs
- DataObject.cs
- UpDownBaseDesigner.cs
- DebuggerAttributes.cs
- FilterEventArgs.cs
- MenuItemBindingCollection.cs
- CheckBoxRenderer.cs
- MessageQueuePermission.cs
- ListParaClient.cs
- PathGeometry.cs
- OpenTypeLayoutCache.cs
- RMEnrollmentPage3.cs
- InputEventArgs.cs
- XslTransform.cs
- _SslStream.cs
- CompiledAction.cs
- ServiceOperationUIEditor.cs
- NonVisualControlAttribute.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- TransformDescriptor.cs
- StringToken.cs
- SoundPlayerAction.cs
- ReachFixedDocumentSerializerAsync.cs
- StateChangeEvent.cs
- XPathSelfQuery.cs
- FrugalList.cs
- XmlValidatingReader.cs
- TextSpan.cs
- AuthenticationSchemesHelper.cs
- ElementsClipboardData.cs
- TreePrinter.cs
- PropertyOverridesTypeEditor.cs
- ByteAnimation.cs
- Positioning.cs
- SolidBrush.cs
- XmlElementCollection.cs
- CryptoApi.cs
- SqlProvider.cs
- ImportCatalogPart.cs
- MimeTypePropertyAttribute.cs
- ListViewGroupConverter.cs
- IndexOutOfRangeException.cs
- Brush.cs
- DisableDpiAwarenessAttribute.cs
- SqlDataSourceParameterParser.cs
- InternalBase.cs
- ClientSettingsStore.cs
- SortedDictionary.cs
- DrawingContextDrawingContextWalker.cs
- SoapClientProtocol.cs
- StaticExtensionConverter.cs
- MemberCollection.cs
- BigInt.cs
- SqlRowUpdatingEvent.cs
- MsmqHostedTransportManager.cs
- RowUpdatingEventArgs.cs
- XmlDictionaryReaderQuotas.cs
- HtmlControl.cs
- SerializationStore.cs
- ImageClickEventArgs.cs
- CodeArrayCreateExpression.cs
- AssemblyNameProxy.cs
- SqlFactory.cs
- SettingsPropertyIsReadOnlyException.cs
- DiagnosticTraceSource.cs
- ResourceFallbackManager.cs
- ListBindingHelper.cs
- QilStrConcat.cs
- DrawingCollection.cs
- ClientScriptItemCollection.cs
- DESCryptoServiceProvider.cs
- Function.cs
- ApplicationFileCodeDomTreeGenerator.cs
- ToolStripMenuItem.cs
- AlternationConverter.cs
- FlowDocumentView.cs
- Message.cs