You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,41 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="MimeParameter.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.Services.Description {
|
||||
|
||||
using System.Web.Services;
|
||||
using System.Web.Services.Protocols;
|
||||
using System.Xml.Serialization;
|
||||
using System.Xml.Schema;
|
||||
using System.Collections;
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.CodeDom;
|
||||
|
||||
internal class MimeParameter {
|
||||
string name;
|
||||
string typeName;
|
||||
CodeAttributeDeclarationCollection attrs;
|
||||
|
||||
internal string Name {
|
||||
get { return name == null ? string.Empty : name; }
|
||||
set { name = value; }
|
||||
}
|
||||
|
||||
internal string TypeName {
|
||||
get { return typeName == null ? string.Empty : typeName; }
|
||||
set { typeName = value; }
|
||||
}
|
||||
|
||||
internal CodeAttributeDeclarationCollection Attributes {
|
||||
get {
|
||||
if (attrs == null)
|
||||
attrs = new CodeAttributeDeclarationCollection();
|
||||
return attrs;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user